X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Ftop%2FValueNotFound.java;fp=bundles%2Forg.simantics.scl.compiler%2Fsrc%2Forg%2Fsimantics%2Fscl%2Fcompiler%2Ftop%2FValueNotFound.java;h=84b79eb1f71c1c6698c2ee0a433f5a516a9c5289;hp=0000000000000000000000000000000000000000;hb=969bd23cab98a79ca9101af33334000879fb60c5;hpb=866dba5cd5a3929bbeae85991796acb212338a08 diff --git a/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/top/ValueNotFound.java b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/top/ValueNotFound.java new file mode 100755 index 000000000..84b79eb1f --- /dev/null +++ b/bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/top/ValueNotFound.java @@ -0,0 +1,13 @@ +package org.simantics.scl.compiler.top; + +public class ValueNotFound extends Exception { + + private static final long serialVersionUID = 3310334133049620208L; + + public final String name; + + public ValueNotFound(String name) { + this.name = name; + } + +}