X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/ImageBuilderInternalException.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/ImageBuilderInternalException.java index 8de3250..5c1c6bb 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/ImageBuilderInternalException.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/builder/ImageBuilderInternalException.java @@ -13,28 +13,28 @@ package net.sourceforge.phpdt.internal.core.builder; import org.eclipse.core.runtime.CoreException; /** - * Exception thrown when there is an internal error in the image builder. - * May wrapper another exception. + * Exception thrown when there is an internal error in the image builder. May + * wrapper another exception. */ public class ImageBuilderInternalException extends RuntimeException { -protected CoreException coreException; + protected CoreException coreException; -public ImageBuilderInternalException(CoreException e) { - this.coreException = e; -} + public ImageBuilderInternalException(CoreException e) { + this.coreException = e; + } -public CoreException getThrowable() { - return coreException; -} + public CoreException getThrowable() { + return coreException; + } -public void printStackTrace() { - if (coreException != null) { - System.err.println(this); - System.err.println("Stack trace of embedded core exception:"); //$NON-NLS-1$ - coreException.printStackTrace(); - } else { - super.printStackTrace(); + public void printStackTrace() { + if (coreException != null) { + System.err.println(this); + System.err.println("Stack trace of embedded core exception:"); //$NON-NLS-1$ + coreException.printStackTrace(); + } else { + super.printStackTrace(); + } } } -}