]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/ValueNotFoundException.java
Several Wiki documentation view improvements.
[simantics/platform.git] / bundles / org.simantics.scl.reflection / src / org / simantics / scl / reflection / ValueNotFoundException.java
1 package org.simantics.scl.reflection;\r
2 \r
3 /**\r
4  * Thrown when there was no suitable SCL value for given URI.\r
5  * @author Hannu Niemistö\r
6  */\r
7 public class ValueNotFoundException extends Exception {\r
8 \r
9     private static final long serialVersionUID = 6632560554523580437L;\r
10 \r
11     public ValueNotFoundException() {\r
12         super();\r
13     }\r
14 \r
15     public ValueNotFoundException(String message, Throwable cause) {\r
16         super(message, cause);\r
17     }\r
18 \r
19     public ValueNotFoundException(String message) {\r
20         super(message);\r
21     }\r
22 \r
23     public ValueNotFoundException(Throwable cause) {\r
24         super(cause);\r
25     }    \r
26     \r
27 }\r