Package ddf.catalog.content
Class StorageException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ddf.catalog.content.StorageException
- All Implemented Interfaces:
Serializable
Exception thrown when a
StorageProvider encounters problems during its execution of CRUD
operations.
This code is experimental. While this interface is functional and tested, it may change or be removed in a future version of the library.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStorageException(String message) Instantiates a new StorageException from a given string.StorageException(String message, Throwable throwable) Instantiates a new StorageException with a message.StorageException(Throwable throwable) Instantiates a new StorageException with givenThrowable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
StorageException
Instantiates a new StorageException from a given string.- Parameters:
message- the string to use for the exception.
-
StorageException
Instantiates a new StorageException with givenThrowable.- Parameters:
throwable- the throwable
-
StorageException
Instantiates a new StorageException with a message.- Parameters:
message- the messagethrowable- the throwable
-