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 / MissingSourceFileException.java
index 4c5bf91..bb5848b 100644 (file)
 package net.sourceforge.phpdt.internal.core.builder;
 
 /**
- * Exception thrown when the build should be aborted because a source file is missing/empty.
+ * Exception thrown when the build should be aborted because a source file is
+ * missing/empty.
  */
 public class MissingSourceFileException extends RuntimeException {
 
-protected String missingSourceFile;
+       protected String missingSourceFile;
 
-public MissingSourceFileException(String missingSourceFile) {
-       this.missingSourceFile = missingSourceFile;
-}
+       public MissingSourceFileException(String missingSourceFile) {
+               this.missingSourceFile = missingSourceFile;
+       }
 }