KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > cache > marshall > InactiveRegionException


1 package org.jboss.cache.marshall;
2
3 import org.jboss.cache.CacheException;
4
5 /**
6  * Thrown by a {@link org.jboss.cache.marshall.Marshaller} instance when attempting to perform an operation on an inactive region.
7  *
8  * @author <a HREF="mailto:manik@jboss.org">Manik Surtani</a>
9  * @since 2.0.0
10  */

11 public class InactiveRegionException extends CacheException
12 {
13    
14    private static final long serialVersionUID = -5672201755094521936L;
15
16    public InactiveRegionException()
17    {
18       super();
19    }
20
21    public InactiveRegionException(String JavaDoc msg)
22    {
23       super(msg);
24    }
25
26    public InactiveRegionException(String JavaDoc msg, Throwable JavaDoc cause)
27    {
28       super(msg, cause);
29    }
30 }
31
Popular Tags