A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / builder / ImageBuilderInternalException.java
index 8de3250..5c1c6bb 100644 (file)
@@ -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();
+               }
        }
 }
-}