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