]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.acorn/src/org/simantics/acorn/InvalidHeadStateException.java
Merge commit '2ef2a5e5a52f8bfdbb5f2f47be2d3fbdcd2a8834'
[simantics/platform.git] / bundles / org.simantics.acorn / src / org / simantics / acorn / InvalidHeadStateException.java
1 package org.simantics.acorn;
2
3 public class InvalidHeadStateException extends Exception {
4
5     private static final long serialVersionUID = -7291859180968235955L;
6
7     public InvalidHeadStateException() {
8         super();
9     }
10
11     public InvalidHeadStateException(String message, Throwable cause, boolean enableSuppression,
12             boolean writableStackTrace) {
13         super(message, cause, enableSuppression, writableStackTrace);
14     }
15
16     public InvalidHeadStateException(String message, Throwable cause) {
17         super(message, cause);
18     }
19
20     public InvalidHeadStateException(String message) {
21         super(message);
22     }
23
24     public InvalidHeadStateException(Throwable cause) {
25         super(cause);
26     }
27 }