Refactory: remove unused classes, imports, fields and methods.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / problem / ShouldNotImplement.java
index 2df4b5a..68f9a23 100644 (file)
 package net.sourceforge.phpdt.internal.compiler.problem;
 
 /*
- * Special unchecked exception type used 
- * to denote implementation that should never be reached.
- *
- *     (internal only)
+ * Special unchecked exception type used to denote implementation that should
+ * never be reached.
+ * 
+ * (internal only)
  */
 public class ShouldNotImplement extends RuntimeException {
-public ShouldNotImplement(){
-}
-public ShouldNotImplement(String message){
-       super(message);
-}
+       /**
+        * 
+        */
+       private static final long serialVersionUID = 599981042161407964L;
+
+//     public ShouldNotImplement() {
+//     }
+
+       public ShouldNotImplement(String message) {
+               super(message);
+       }
 }