]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/exception/InvalidVariableException.java
Fail safe import fixes made by Antti
[simantics/platform.git] / bundles / org.simantics.db.layer0 / src / org / simantics / db / layer0 / exception / InvalidVariableException.java
1 package org.simantics.db.layer0.exception;
2
3 /**
4  * @author Tuukka Lehtonen
5  */
6 public class InvalidVariableException extends VariableException {
7
8     private static final long serialVersionUID = -8864867946545625143L;
9
10     public InvalidVariableException() {
11         super();
12     }
13
14     public InvalidVariableException(String message) {
15         super(message);
16     }
17
18     public InvalidVariableException(String message, Throwable cause) {
19         super(message, cause);
20     }
21
22     public InvalidVariableException(Throwable cause) {
23         super(cause);
24     }
25
26 }