A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / problem / ShouldNotImplement.java
index 2df4b5a..d0834bc 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);
-}
+       public ShouldNotImplement() {
+       }
+
+       public ShouldNotImplement(String message) {
+               super(message);
+       }
 }