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