|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
RegionNotEmptyException.java | - | 0% | 0% | 0% |
|
1 | /* | |
2 | * JBoss, the OpenSource J2EE webOS | |
3 | * | |
4 | * Distributable under LGPL license. | |
5 | * See terms of license at gnu.org. | |
6 | */ | |
7 | ||
8 | package org.jboss.cache; | |
9 | ||
10 | /** | |
11 | * Thrown when an attempt is made to {@link RegionManager#activate(Fqn)} activate a subtree} | |
12 | * root in Fqn that already has an existing node in the cache. | |
13 | * | |
14 | * @author <a href="mailto://brian.stansberry@jboss.com">Brian Stansberry</a> | |
15 | */ | |
16 | public class RegionNotEmptyException extends CacheException | |
17 | { | |
18 | ||
19 | /** | |
20 | * The serialVersionUID | |
21 | */ | |
22 | private static final long serialVersionUID = 1L; | |
23 | ||
24 | 0 | public RegionNotEmptyException() |
25 | { | |
26 | 0 | super(); |
27 | } | |
28 | ||
29 | 0 | public RegionNotEmptyException(String msg) |
30 | { | |
31 | 0 | super(msg); |
32 | } | |
33 | ||
34 | 0 | public RegionNotEmptyException(String msg, Throwable cause) |
35 | { | |
36 | 0 | super(msg, cause); |
37 | } | |
38 | ||
39 | } |
|