Package org.codelibs.fess.exception
Class JobProcessingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.exception.JobProcessingException
- All Implemented Interfaces:
Serializable
Exception thrown when an error occurs during job processing.
This exception is used to indicate problems that arise during
the execution or processing of jobs in the system.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJobProcessingException(String message) Constructs a new JobProcessingException with the specified detail message.JobProcessingException(String message, Throwable e) Constructs a new JobProcessingException with the specified detail message and cause.Constructs a new JobProcessingException 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
-
JobProcessingException
Constructs a new JobProcessingException with the specified cause.- Parameters:
e- the cause of the exception
-
JobProcessingException
Constructs a new JobProcessingException with the specified detail message and cause.- Parameters:
message- the detail message explaining the exceptione- the cause of the exception
-
JobProcessingException
Constructs a new JobProcessingException with the specified detail message.- Parameters:
message- the detail message explaining the exception
-