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