Package net.sf.ehcache
Class LoaderTimeoutException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.ehcache.CacheException
-
- net.sf.ehcache.LoaderTimeoutException
-
- All Implemented Interfaces:
java.io.Serializable
public class LoaderTimeoutException extends CacheException
A loader timeout Exception.- Version:
- $Id$
- Author:
- Ludovic Orban
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LoaderTimeoutException()Constructor for the LoaderTimeoutException object.LoaderTimeoutException(java.lang.String message)Constructor for the LoaderTimeoutException object.LoaderTimeoutException(java.lang.String message, java.lang.Throwable cause)Constructs a new LoaderTimeoutException with the specified detail message and cause.LoaderTimeoutException(java.lang.Throwable cause)Constructs a new LoaderTimeoutException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
-
-
-
Constructor Detail
-
LoaderTimeoutException
public LoaderTimeoutException()
Constructor for the LoaderTimeoutException object.
-
LoaderTimeoutException
public LoaderTimeoutException(java.lang.String message)
Constructor for the LoaderTimeoutException object.- Parameters:
message- the exception detail message
-
LoaderTimeoutException
public LoaderTimeoutException(java.lang.String message, java.lang.Throwable cause)Constructs a new LoaderTimeoutException with the specified detail message and cause.Note that the detail message associated with
causeis not automatically incorporated in this runtime exception's detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 1.2.4
-
LoaderTimeoutException
public LoaderTimeoutException(java.lang.Throwable cause)
Constructs a new LoaderTimeoutException with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). This constructor is useful for runtime exceptions that are little more than wrappers for other throwables.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 1.2.4
-
-