Package com.terracottatech.store
Class StoreException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.terracottatech.store.StoreException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DatasetExistsException
,DatasetKeyTypeMismatchException
,DatasetMissingException
A checked exception that indicates a store operation has failed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStoreException
(String message) Create a StoreException with a message.StoreException
(String message, Throwable cause) Create a StoreException with a message and underlying cause.StoreException
(Throwable cause) Create a StoreException 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
-
StoreException
Create a StoreException with an underlying cause.- Parameters:
cause
- the exception that led to this exception being created
-
StoreException
Create a StoreException with a message.- Parameters:
message
- the message
-
StoreException
Create a StoreException with a message and underlying cause.- Parameters:
message
- the messagecause
- the exception that led to this exception being created
-