]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.layer0/src/org/simantics/db/layer0/exception/InvalidVariableException.java
Fixed multiple issues causing dangling references to discarded queries
[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 import org.simantics.db.exception.VariableException;
4
5 /**
6  * @author Tuukka Lehtonen
7  */
8 public class InvalidVariableException extends VariableException {
9
10     private static final long serialVersionUID = -8864867946545625143L;
11
12     public InvalidVariableException() {
13         super();
14     }
15
16     public InvalidVariableException(String message) {
17         super(message);
18     }
19
20     public InvalidVariableException(String message, Throwable cause) {
21         super(message, cause);
22     }
23
24     public InvalidVariableException(Throwable cause) {
25         super(cause);
26     }
27
28 }