Package org.codelibs.fess.dict
Class DictionaryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.dict.DictionaryException
- All Implemented Interfaces:
Serializable
Exception thrown when dictionary operations encounter errors.
This exception is typically used for issues during dictionary file
reading, writing, parsing, or other dictionary-related operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDictionaryException(String message) Creates a new DictionaryException with the specified message.DictionaryException(String message, Throwable cause) Creates a new DictionaryException with the specified 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
-
DictionaryException
Creates a new DictionaryException with the specified message and cause.- Parameters:
message- the detail messagecause- the underlying cause of the exception
-
DictionaryException
Creates a new DictionaryException with the specified message.- Parameters:
message- the detail message
-