]> gerrit.simantics Code Review - simantics/platform.git/blob - compiler/top/ValueNotFound.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / 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 }