1 |
| |
2 |
| |
3 |
| |
4 |
| |
5 |
| |
6 |
| |
7 |
| package org.jboss.cache.lock; |
8 |
| |
9 |
| |
10 |
| |
11 |
| public class OwnerNotExistedException extends Exception |
12 |
| { |
13 |
| |
14 |
| private static final long serialVersionUID = 2837393571654438480L; |
15 |
| |
16 |
| |
17 |
| |
18 |
| |
19 |
0
| public OwnerNotExistedException()
|
20 |
| { |
21 |
0
| super();
|
22 |
| } |
23 |
| |
24 |
| |
25 |
| |
26 |
| |
27 |
0
| public OwnerNotExistedException(String message)
|
28 |
| { |
29 |
0
| super(message);
|
30 |
| } |
31 |
| |
32 |
| |
33 |
| |
34 |
| |
35 |
| |
36 |
0
| public OwnerNotExistedException(String message, Throwable cause)
|
37 |
| { |
38 |
0
| super(message, cause);
|
39 |
| } |
40 |
| |
41 |
| |
42 |
| |
43 |
| |
44 |
0
| public OwnerNotExistedException(Throwable cause)
|
45 |
| { |
46 |
0
| super(cause);
|
47 |
| } |
48 |
| |
49 |
| } |