1 |
| |
2 |
| |
3 |
| |
4 |
| |
5 |
| |
6 |
| |
7 |
| |
8 |
| package org.jboss.cache.pojo; |
9 |
| |
10 |
| |
11 |
| |
12 |
| |
13 |
| |
14 |
| |
15 |
| |
16 |
| public class PojoCacheException extends RuntimeException |
17 |
| { |
18 |
| |
19 |
| private static final long serialVersionUID = -2879024229641921582L; |
20 |
| |
21 |
0
| public PojoCacheException()
|
22 |
| { |
23 |
0
| super();
|
24 |
| } |
25 |
| |
26 |
5
| public PojoCacheException(String err, Throwable e)
|
27 |
| { |
28 |
5
| super(err, e);
|
29 |
| } |
30 |
| |
31 |
6
| public PojoCacheException(String err)
|
32 |
| { |
33 |
6
| super(err);
|
34 |
| } |
35 |
| |
36 |
0
| public PojoCacheException(Throwable e)
|
37 |
| { |
38 |
0
| super(e);
|
39 |
| } |
40 |
| } |