]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/common/exceptions/InternalCompilerError.java
Tons of dependency fixes and updates
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / common / exceptions / InternalCompilerError.java
index 1c2709665765562067f185a96bff6ece7243b17a..a3b64613428c465168cb210211ef19010e8570cf 100644 (file)
@@ -22,6 +22,11 @@ public class InternalCompilerError extends RuntimeException {
         this.location = Locations.NO_LOCATION;
     }
     
+    public InternalCompilerError(String message, Throwable cause) {
+        super(message, cause);
+        this.location = Locations.NO_LOCATION;
+    }
+    
     public InternalCompilerError(long location, String message) {
         super(message);
         this.location = location;