]> gerrit.simantics Code Review - simantics/platform.git/blob - 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
1 package org.simantics.scl.reflection;\r
2 \r
3 /**\r
4  * Thrown when a SCL type could not be converted to a Java class.\r
5  * @author Hannu Niemistö\r
6  */\r
7 public class TypeNotFoundException extends Exception {\r
8 \r
9     private static final long serialVersionUID = 6507735480719948758L;\r
10 \r
11     public TypeNotFoundException() {\r
12         super();\r
13     }\r
14 \r
15     public TypeNotFoundException(String message, Throwable cause) {\r
16         super(message, cause);\r
17     }\r
18 \r
19     public TypeNotFoundException(String message) {\r
20         super(message);\r
21     }\r
22 \r
23     public TypeNotFoundException(Throwable cause) {\r
24         super(cause);\r
25     }\r
26     \r
27 }\r