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 / MissingClassFileException.java
index 4099502..bc3aaf3 100644 (file)
 package net.sourceforge.phpdt.internal.core.builder;
 
 /**
- * Exception thrown when the build should be aborted because a referenced
- * class file cannot be found.
+ * Exception thrown when the build should be aborted because a referenced class
+ * file cannot be found.
  */
 public class MissingClassFileException extends RuntimeException {
 
-protected String missingClassFile;
+       protected String missingClassFile;
 
-public MissingClassFileException(String missingClassFile) {
-       this.missingClassFile = missingClassFile;
-}
+       public MissingClassFileException(String missingClassFile) {
+               this.missingClassFile = missingClassFile;
+       }
 }