1) Fixed issue #347: Syntax highlight doesn't like apostrophe in heredoc.
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / problem / AbortCompilationUnit.java
index d708839..92ddb4c 100644 (file)
@@ -13,13 +13,17 @@ package net.sourceforge.phpdt.internal.compiler.problem;
 import net.sourceforge.phpdt.internal.compiler.CompilationResult;
 
 /*
- * Special unchecked exception type used 
- * to abort from the compilation process
- *
+ * Special unchecked exception type used to abort from the compilation process
+ * 
  * should only be thrown from within problem handlers.
  */
 public class AbortCompilationUnit extends AbortCompilation {
-public AbortCompilationUnit(CompilationResult compilationResult) {
-       super(compilationResult);
-}
+       /**
+        * 
+        */
+       private static final long serialVersionUID = -3222208987438059121L;
+
+       public AbortCompilationUnit(CompilationResult compilationResult) {
+               super(compilationResult);
+       }
 }