]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.procore/src/org/simantics/db/procore/cluster/OutOfSpaceException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.procore / src / org / simantics / db / procore / cluster / OutOfSpaceException.java
1 package org.simantics.db.procore.cluster;\r
2 \r
3 import org.simantics.db.exception.InternalException;\r
4 \r
5 public class OutOfSpaceException extends InternalException {\r
6 \r
7         private static final long serialVersionUID = 8118388231221084642L;\r
8 \r
9     public OutOfSpaceException(String message) {\r
10         super(message);\r
11     }\r
12 \r
13     public OutOfSpaceException(String message, Throwable cause) {\r
14         super(message, cause);\r
15     }\r
16 \r
17     public OutOfSpaceException(Throwable cause) {\r
18         super(cause);\r
19     }\r
20 \r
21 }\r