X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=bundles%2Forg.simantics.scl.reflection%2Fsrc%2Forg%2Fsimantics%2Fscl%2Freflection%2FValueNotFoundException.java;fp=bundles%2Forg.simantics.scl.reflection%2Fsrc%2Forg%2Fsimantics%2Fscl%2Freflection%2FValueNotFoundException.java;h=ed2cbdad8e1894e08a629972f8878a974087c652;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git 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 index 000000000..ed2cbdad8 --- /dev/null +++ b/bundles/org.simantics.scl.reflection/src/org/simantics/scl/reflection/ValueNotFoundException.java @@ -0,0 +1,27 @@ +package org.simantics.scl.reflection; + +/** + * Thrown when there was no suitable SCL value for given URI. + * @author Hannu Niemistö + */ +public class ValueNotFoundException extends Exception { + + private static final long serialVersionUID = 6632560554523580437L; + + public ValueNotFoundException() { + super(); + } + + public ValueNotFoundException(String message, Throwable cause) { + super(message, cause); + } + + public ValueNotFoundException(String message) { + super(message); + } + + public ValueNotFoundException(Throwable cause) { + super(cause); + } + +}