Package io.micronaut.cache.exceptions
Class CacheSystemException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.micronaut.cache.exceptions.CacheSystemException
-
- All Implemented Interfaces:
java.io.Serializable
public class CacheSystemException extends java.lang.RuntimeException
An exception that occurs when an internal cache system error occurs.- Since:
- 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CacheSystemException(java.lang.String message)
Constructs a new CacheSystem exception with the specified detail message.CacheSystemException(java.lang.String message, java.lang.Throwable cause)
Constructs a new CacheSystem exception with the specified detail message and cause.
-
-
-
Constructor Detail
-
CacheSystemException
public CacheSystemException(java.lang.String message, java.lang.Throwable cause)
Constructs a new CacheSystem exception with the specified detail message and cause.Note that the detail message associated with
cause
is not automatically incorporated in this 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). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-
CacheSystemException
public CacheSystemException(java.lang.String message)
Constructs a new CacheSystem exception with the specified detail message.Note that the detail message associated with
cause
is not automatically incorporated in this exception's detail message.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method).
-
-