Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / builder / MissingSourceFileException.java
index 4c5bf91..2a71698 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;
+       /**
+        * 
+        */
+       private static final long serialVersionUID = 2990201129498727559L;
+       protected String missingSourceFile;
 
-public MissingSourceFileException(String missingSourceFile) {
-       this.missingSourceFile = missingSourceFile;
-}
+       public MissingSourceFileException(String missingSourceFile) {
+               this.missingSourceFile = missingSourceFile;
+       }
 }