]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.acorn/src/org/simantics/acorn/exception/InvalidHeadStateException.java
Upgrade pdfbox to 2.0.3 and fastutil to 7.0.13.
[simantics/platform.git] / bundles / org.simantics.acorn / src / org / simantics / acorn / exception / InvalidHeadStateException.java
1 package org.simantics.acorn.exception;
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 }