Package org.codelibs.fess.exception
Class StorageException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.exception.StorageException
- All Implemented Interfaces:
Serializable
This exception is thrown when a storage-related error occurs.
It can be used to wrap underlying storage exceptions, providing a
consistent error handling mechanism for storage operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStorageException(String message) Constructs a new storage exception with the specified detail message.StorageException(String message, Throwable cause) Constructs a new storage exception with the specified detail message and 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
-
StorageException
Constructs a new storage exception with the specified detail message and cause.- Parameters:
message- The detail message.cause- The cause of the exception.
-
StorageException
Constructs a new storage exception with the specified detail message.- Parameters:
message- The detail message.
-