]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/TypeNotFoundException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scl.reflection / src / org / simantics / scl / reflection / TypeNotFoundException.java
diff --git a/bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/TypeNotFoundException.java b/bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/TypeNotFoundException.java
new file mode 100755 (executable)
index 0000000..62552d2
--- /dev/null
@@ -0,0 +1,27 @@
+package org.simantics.scl.reflection;\r
+\r
+/**\r
+ * Thrown when a SCL type could not be converted to a Java class.\r
+ * @author Hannu Niemistö\r
+ */\r
+public class TypeNotFoundException extends Exception {\r
+\r
+    private static final long serialVersionUID = 6507735480719948758L;\r
+\r
+    public TypeNotFoundException() {\r
+        super();\r
+    }\r
+\r
+    public TypeNotFoundException(String message, Throwable cause) {\r
+        super(message, cause);\r
+    }\r
+\r
+    public TypeNotFoundException(String message) {\r
+        super(message);\r
+    }\r
+\r
+    public TypeNotFoundException(Throwable cause) {\r
+        super(cause);\r
+    }\r
+    \r
+}\r