Package org.apache.ofbiz.service.job
Class JobManagerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.ofbiz.base.util.GeneralException
org.apache.ofbiz.service.job.JobManagerException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
InvalidJobException
Job Scheduler Exception
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates newJobManagerException
without detail message.Constructs anJobManagerException
with the specified detail message.JobManagerException
(String msg, Throwable nested) Constructs anJobManagerException
with the specified detail message and nested Exception.JobManagerException
(Throwable nested) Constructs anJobManagerException
with the specified detail message and nested Exception. -
Method Summary
Methods inherited from class org.apache.ofbiz.base.util.GeneralException
checkException, getMessage, getMessageList, getNested, getNonNestedMessage, printStackTrace, printStackTrace, printStackTrace
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
JobManagerException
public JobManagerException()Creates newJobManagerException
without detail message. -
JobManagerException
Constructs anJobManagerException
with the specified detail message.- Parameters:
msg
- the detail message.
-
JobManagerException
Constructs anJobManagerException
with the specified detail message and nested Exception.- Parameters:
nested
- the nested exception.
-
JobManagerException
Constructs anJobManagerException
with the specified detail message and nested Exception.- Parameters:
msg
- the detail message.nested
- the nested exception.
-