Package org.ehcache
Class CacheIterationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.ehcache.CacheIterationException
-
- All Implemented Interfaces:
java.io.Serializable
public class CacheIterationException extends java.lang.RuntimeExceptionIndicates an unrecoverable failure occurred during iteration.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description CacheIterationException()Creates aCacheIterationException.CacheIterationException(java.lang.String message)Creates aCacheIterationExceptionwith the provided message.CacheIterationException(java.lang.String message, java.lang.Throwable cause)Creates aCacheIterationExceptionwith the provided message and cause.CacheIterationException(java.lang.Throwable cause)Creates aCacheIterationExceptionwith the provided cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CacheIterationException
public CacheIterationException()
Creates aCacheIterationException.
-
CacheIterationException
public CacheIterationException(java.lang.String message)
Creates aCacheIterationExceptionwith the provided message.- Parameters:
message- information about the exception
-
CacheIterationException
public CacheIterationException(java.lang.String message, java.lang.Throwable cause)Creates aCacheIterationExceptionwith the provided message and cause.- Parameters:
message- information about the exceptioncause- the cause of this exception
-
CacheIterationException
public CacheIterationException(java.lang.Throwable cause)
Creates aCacheIterationExceptionwith the provided cause.- Parameters:
cause- the cause of this exception
-
-