]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/src/org/simantics/scl/compiler/top/ValueNotFound.java
(refs #7250) Merging master, minor CHR bugfixes
[simantics/platform.git] / bundles / org.simantics.scl.compiler / src / org / simantics / scl / compiler / top / ValueNotFound.java
1 package org.simantics.scl.compiler.top;
2
3 public class ValueNotFound extends Exception {
4
5     private static final long serialVersionUID = 3310334133049620208L;
6     
7     public final String name;
8
9     public ValueNotFound(String name) {
10         this.name = name;
11     }
12     
13 }