]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/ValueNotFoundException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.scl.reflection / src / org / simantics / scl / reflection / ValueNotFoundException.java
diff --git a/bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/ValueNotFoundException.java b/bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/ValueNotFoundException.java
new file mode 100755 (executable)
index 0000000..ed2cbda
--- /dev/null
@@ -0,0 +1,27 @@
+package org.simantics.scl.reflection;\r
+\r
+/**\r
+ * Thrown when there was no suitable SCL value for given URI.\r
+ * @author Hannu Niemistö\r
+ */\r
+public class ValueNotFoundException extends Exception {\r
+\r
+    private static final long serialVersionUID = 6632560554523580437L;\r
+\r
+    public ValueNotFoundException() {\r
+        super();\r
+    }\r
+\r
+    public ValueNotFoundException(String message, Throwable cause) {\r
+        super(message, cause);\r
+    }\r
+\r
+    public ValueNotFoundException(String message) {\r
+        super(message);\r
+    }\r
+\r
+    public ValueNotFoundException(Throwable cause) {\r
+        super(cause);\r
+    }    \r
+    \r
+}\r