]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.acorn/src/org/simantics/acorn/exception/IllegalAcornStateException.java
Merge commit '31664b6'
[simantics/platform.git] / bundles / org.simantics.acorn / src / org / simantics / acorn / 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 }