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 / AbortIncrementalBuildException.java
index 5b6a28e..7420960 100644 (file)
 package net.sourceforge.phpdt.internal.core.builder;
 
 /**
- * Exception thrown when an incremental builder cannot find a .class file.
- * Its possible the type can no longer be found because it was renamed inside its existing
- * source file.
+ * Exception thrown when an incremental builder cannot find a .class file. Its
+ * possible the type can no longer be found because it was renamed inside its
+ * existing source file.
  */
 public class AbortIncrementalBuildException extends RuntimeException {
 
-protected String qualifiedTypeName;
+       protected String qualifiedTypeName;
 
-public AbortIncrementalBuildException(String qualifiedTypeName) {
-       this.qualifiedTypeName = qualifiedTypeName;
-}
+       public AbortIncrementalBuildException(String qualifiedTypeName) {
+               this.qualifiedTypeName = qualifiedTypeName;
+       }
 }