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);
+ }
}