Package com.terracottatech.store
Class StoreRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.terracottatech.store.StoreRuntimeException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
StoreBusyException
,StoreIndexNotFoundException
,StoreOperationAbandonedException
,StoreReconnectFailedException
,StoreReconnectTimeoutException
,StoreStreamNotFoundException
,StoreStreamRegisteredException
,StoreStreamTerminatedException
An unchecked exception that indicates a store operation has failed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStoreRuntimeException
(String message) Create a StoreRuntimeException with a message.StoreRuntimeException
(String message, Throwable cause) Create a StoreRuntimeException with a message and underlying cause.StoreRuntimeException
(Throwable cause) Create a StoreRuntimeException with an underlying cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
StoreRuntimeException
Create a StoreRuntimeException with an underlying cause.- Parameters:
cause
- the exception that led to this exception being created
-
StoreRuntimeException
Create a StoreRuntimeException with a message.- Parameters:
message
- the message
-
StoreRuntimeException
Create a StoreRuntimeException with a message and underlying cause.- Parameters:
message
- the messagecause
- the exception that led to this exception being created
-