KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > RegionNotEmptyException


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
12  * {@link CacheImpl#activateRegion(String) activate a subtree}
13  * roote in Fqn that already has an existing node in the cache.
14  *
15  * @author <a HREF="mailto://brian.stansberry@jboss.com">Brian Stansberry</a>
16  * @version $Revision$
17  * @see CacheImpl#activateRegion(String)
18  * @see CacheImpl#exists(Fqn)
19  * @see CacheImpl#exists(String)
20  */

21 public class RegionNotEmptyException extends CacheException
22 {
23
24    /**
25     * The serialVersionUID
26     */

27    private static final long serialVersionUID = 1L;
28
29    public RegionNotEmptyException()
30    {
31       super();
32    }
33
34    public RegionNotEmptyException(String JavaDoc msg)
35    {
36       super(msg);
37    }
38
39    public RegionNotEmptyException(String JavaDoc msg, Throwable JavaDoc cause)
40    {
41       super(msg, cause);
42    }
43
44 }
45
Popular Tags