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