Package net.sf.ehcache.distribution
Class RemoteCacheException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.ehcache.CacheException
-
- net.sf.ehcache.distribution.RemoteCacheException
-
- All Implemented Interfaces:
java.io.Serializable
public final class RemoteCacheException extends CacheException
A Cache Exception in the distribution mechanism.A RemoteCacheException may not always matter to an application, which may want to ignore it.
- Version:
- $Id$
- Author:
- Greg Luck
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RemoteCacheException()Constructor for the RemoteCacheException object.RemoteCacheException(java.lang.String message)Constructor for the RemoteCacheException object.RemoteCacheException(java.lang.String message, java.lang.Throwable cause)Constructor for the RemoteCacheException object.
-
-
-
Constructor Detail
-
RemoteCacheException
public RemoteCacheException()
Constructor for the RemoteCacheException object.
-
RemoteCacheException
public RemoteCacheException(java.lang.String message)
Constructor for the RemoteCacheException object.- Parameters:
message- the reason the exception was thrown
-
RemoteCacheException
public RemoteCacheException(java.lang.String message, java.lang.Throwable cause)Constructor for the RemoteCacheException object.- Parameters:
message- the exception detail messagecause- the cause of the exception
-
-