| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception org.openharmonise.commons.cache.CacheException
CacheException | public class CacheException extends Exception (Code) | | A CacheException is thrown when some caching error occurs.
author: Michael Bell version: $Revision: 1.1 $ |
Constructor Summary | |
public | CacheException() Constructs a new exception with null as its detail message. | public | CacheException(String message) Constructs a new exception with the specified detail message.
Parameters: message - the detail message. | public | CacheException(String message, Throwable cause) Constructs a new exception with the specified detail message and
cause. | public | CacheException(Throwable cause) Constructs a new exception with the specified cause and a detail
message of (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause). |
CacheException | public CacheException()(Code) | | Constructs a new exception with null as its detail message.
|
CacheException | public CacheException(String message)(Code) | | Constructs a new exception with the specified detail message.
Parameters: message - the detail message. |
CacheException | public CacheException(String message, Throwable cause)(Code) | | Constructs a new exception with the specified detail message and
cause.
Parameters: message - the detail message Parameters: cause - the cause |
CacheException | public CacheException(Throwable cause)(Code) | | Constructs a new exception with the specified cause and a detail
message of (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause).
Parameters: cause - the cause |
|
|
|