Class StorageInterceptorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.micronaut.eclipsestore.interceptors.StorageInterceptorException
- All Implemented Interfaces:
Serializable
Exception thrown when an error occurs during storage interceptor processing.
- Since:
- 1.0.0
- Author:
- Tim Yates
- See Also:
-
Constructor Summary
ConstructorDescriptionStorageInterceptorException
(String message) This is thrown if when there issue finding a storage manager to use.StorageInterceptorException
(String message, Throwable cause) This is thrown if there is an issue calling storeAll after the intercepted method has been executed. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
StorageInterceptorException
This is thrown if when there issue finding a storage manager to use.- Parameters:
message
- The message
-
StorageInterceptorException
This is thrown if there is an issue calling storeAll after the intercepted method has been executed.- Parameters:
message
- The messagecause
- The underlying cause of the exception.
-