Package org.codelibs.fess.exception
Class CommandExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.exception.CommandExecutionException
- All Implemented Interfaces:
Serializable
Exception thrown when command execution fails.
This exception indicates that an external command or process execution encountered an error.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCommandExecutionException(String message) Constructor with error message.CommandExecutionException(String message, Throwable e) Constructor with error 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
-
CommandExecutionException
Constructor with error message.- Parameters:
message- The error message describing the command execution failure.
-
CommandExecutionException
Constructor with error message and cause.- Parameters:
message- The error message describing the command execution failure.e- The cause of the exception.
-