]> gerrit.simantics Code Review - simantics/platform.git/blob - exception/IllegalAcornStateException.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / exception / IllegalAcornStateException.java
1 package org.simantics.acorn.exception;
2
3 import org.simantics.db.exception.SDBException;
4
5 public class IllegalAcornStateException extends SDBException {
6
7     private static final long serialVersionUID = -8255505454138490120L;
8
9     public IllegalAcornStateException(String message, Throwable cause) {
10         super(message, cause);
11     }
12
13     public IllegalAcornStateException(String message) {
14         super(message);
15     }
16
17     public IllegalAcornStateException(Throwable cause) {
18         super(cause);
19     }
20
21 }