]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db/src/org/simantics/db/exception/ClusterDoesNotExistException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / exception / ClusterDoesNotExistException.java
1 package org.simantics.db.exception;\r
2 \r
3 import org.simantics.db.Resource;\r
4 \r
5 public class ClusterDoesNotExistException extends DatabaseException {\r
6 \r
7     private static final long serialVersionUID = -1647965373868792422L;\r
8 \r
9     public ClusterDoesNotExistException() {\r
10         super();\r
11     }\r
12 \r
13     public ClusterDoesNotExistException(int... resources) {\r
14         super(resources);\r
15     }\r
16 \r
17     public ClusterDoesNotExistException(String message, int... resources) {\r
18         super(message, resources);\r
19     }\r
20 \r
21     public ClusterDoesNotExistException(String message, Resource... rs) {\r
22         super(message, rs);\r
23     }\r
24 \r
25     public ClusterDoesNotExistException(String message, Throwable cause, Resource... rs) {\r
26         super(message, cause, rs);\r
27     }\r
28 \r
29     public ClusterDoesNotExistException(String message, Throwable cause) {\r
30         super(message, cause);\r
31     }\r
32 \r
33     public ClusterDoesNotExistException(String message) {\r
34         super(message);\r
35     }\r
36 \r
37     public ClusterDoesNotExistException(Throwable cause, Resource... rs) {\r
38         super(cause, rs);\r
39     }\r
40 \r
41     public ClusterDoesNotExistException(Throwable cause) {\r
42         super(cause);\r
43     }\r
44 }\r