Package org.codelibs.fess.exception
Class FessSystemException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
CommandExecutionException,ContainerNotAvailableException,ContentNotFoundException,DataStoreException,DictionaryException,FessUserNotFoundException,GsaConfigException,InvalidAccessTokenException,InvalidQueryException,JobNotFoundException,JobProcessingException,LdapConfigurationException,LdapOperationException,LlmException,PluginException,QueryParseException,ResultOffsetExceededException,ScheduledJobException,ScriptEngineException,SearchEngineClientException,SearchQueryException,SsoLoginException,SsoMessageException,SsoProcessException,StorageException,ThemeException,ThumbnailGenerationException,UnsupportedSearchException,WebApiException
System exception class for the Fess search engine.
This exception is thrown when system-level errors occur in the Fess application,
such as configuration errors, initialization failures, or critical runtime issues.
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionFessSystemException(String message) Constructs a new FessSystemException with the specified detail message.protectedFessSystemException(String message, boolean enableSuppression, boolean writableStackTrace) Constructs a new FessSystemException with the specified detail message and suppression settings.FessSystemException(String message, Throwable cause) Constructs a new FessSystemException with the specified detail message and cause.FessSystemException(Throwable cause) Constructs a new FessSystemException 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
-
FessSystemException
Constructs a new FessSystemException with the specified detail message and cause.- Parameters:
message- the detail message describing the exceptioncause- the cause of this exception
-
FessSystemException
Constructs a new FessSystemException with the specified detail message.- Parameters:
message- the detail message describing the exception
-
FessSystemException
Constructs a new FessSystemException with the specified cause.- Parameters:
cause- the cause of this exception
-
FessSystemException
protected FessSystemException(String message, boolean enableSuppression, boolean writableStackTrace) Constructs a new FessSystemException with the specified detail message and suppression settings.- Parameters:
message- the detail message describing the exceptionenableSuppression- whether suppression is enabled or disabledwritableStackTrace- whether the stack trace should be writable
-