Package org.ehcache
Class CacheIterationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.ehcache.CacheIterationException
-
- All Implemented Interfaces:
Serializable
public class CacheIterationException extends RuntimeException
Indicates an unrecoverable failure occurred during iteration.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CacheIterationException()Creates aCacheIterationException.CacheIterationException(String message)Creates aCacheIterationExceptionwith the provided message.CacheIterationException(String message, Throwable cause)Creates aCacheIterationExceptionwith the provided message and cause.CacheIterationException(Throwable cause)Creates aCacheIterationExceptionwith the provided cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CacheIterationException
public CacheIterationException()
Creates aCacheIterationException.
-
CacheIterationException
public CacheIterationException(String message)
Creates aCacheIterationExceptionwith the provided message.- Parameters:
message- information about the exception
-
CacheIterationException
public CacheIterationException(String message, Throwable cause)
Creates aCacheIterationExceptionwith the provided message and cause.- Parameters:
message- information about the exceptioncause- the cause of this exception
-
CacheIterationException
public CacheIterationException(Throwable cause)
Creates aCacheIterationExceptionwith the provided cause.- Parameters:
cause- the cause of this exception
-
-