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