Package org.codelibs.fess.exception
Class DataStoreException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.exception.DataStoreException
- All Implemented Interfaces:
Serializable
Exception thrown when an error occurs during data store operations.
This is a system-level exception that indicates problems with data store
configuration, connectivity, or data processing.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDataStoreException(String message) Creates a new DataStoreException with the specified message.DataStoreException(String message, Throwable cause) Creates a new DataStoreException with the specified message and cause.DataStoreException(Throwable cause) Creates a new DataStoreException with the specified 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
-
DataStoreException
Creates a new DataStoreException with the specified message and cause.- Parameters:
message- the error messagecause- the underlying cause of this exception
-
DataStoreException
Creates a new DataStoreException with the specified message.- Parameters:
message- the error message
-
DataStoreException
Creates a new DataStoreException with the specified cause.- Parameters:
cause- the underlying cause of this exception
-