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