]> gerrit.simantics Code Review - simantics/platform.git/blob - ValueNotFound.java
48fdbe55cc67b4228e63b8b2392880a55142e1f7
[simantics/platform.git] / 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 }