|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
PojoCacheAlreadyDetachedException.java | - | 25% | 25% | 25% |
|
1 | /* | |
2 | * JBoss, Home of Professional Open Source | |
3 | * | |
4 | * Distributable under LGPL license. | |
5 | * See terms of license at gnu.org. | |
6 | */ | |
7 | ||
8 | package org.jboss.cache.pojo; | |
9 | ||
10 | /** | |
11 | * Thrown when the POJO has already detached from the cache store by the remote side, but user | |
12 | * is still trying to access it via the cache interceptor. | |
13 | * | |
14 | * @author Ben Wang | |
15 | * @version $Id: PojoCacheAlreadyDetachedException.java,v 1.2 2007/05/22 04:16:07 bstansberry Exp $ | |
16 | */ | |
17 | public class PojoCacheAlreadyDetachedException extends PojoCacheException | |
18 | { | |
19 | /** The serialVersionUID */ | |
20 | private static final long serialVersionUID = -7994594319185959431L; | |
21 | ||
22 | 0 | public PojoCacheAlreadyDetachedException() |
23 | { | |
24 | 0 | super(); |
25 | } | |
26 | ||
27 | 0 | public PojoCacheAlreadyDetachedException(String err, Throwable e) |
28 | { | |
29 | 0 | super(err, e); |
30 | } | |
31 | ||
32 | 4 | public PojoCacheAlreadyDetachedException(String err) |
33 | { | |
34 | 4 | super(err); |
35 | } | |
36 | ||
37 | 0 | public PojoCacheAlreadyDetachedException(Throwable e) |
38 | { | |
39 | 0 | super(e); |
40 | } | |
41 | } |
|