Package org.codelibs.fess.exception
Class JobNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.fess.exception.FessSystemException
org.codelibs.fess.exception.JobNotFoundException
- All Implemented Interfaces:
Serializable
Exception thrown when a scheduled job cannot be found.
This exception is typically thrown when attempting to access or
manipulate a job that does not exist in the system.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionJobNotFoundException(String message) Constructs a new JobNotFoundException with the specified detail message.JobNotFoundException(org.codelibs.fess.opensearch.config.exentity.ScheduledJob scheduledJob) Constructs a new JobNotFoundException with a message derived from the scheduled job. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JobNotFoundException
public JobNotFoundException(org.codelibs.fess.opensearch.config.exentity.ScheduledJob scheduledJob) Constructs a new JobNotFoundException with a message derived from the scheduled job.- Parameters:
scheduledJob- the scheduled job that was not found
-
JobNotFoundException
Constructs a new JobNotFoundException with the specified detail message.- Parameters:
message- the detail message explaining why the job was not found
-