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:
java.io.Serializable
- Direct Known Subclasses:
InvalidJobException
public class JobManagerException extends GeneralException
Job Scheduler Exception- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JobManagerException()
Creates newJobManagerException
without detail message.JobManagerException(java.lang.String msg)
Constructs anJobManagerException
with the specified detail message.JobManagerException(java.lang.String msg, java.lang.Throwable nested)
Constructs anJobManagerException
with the specified detail message and nested Exception.JobManagerException(java.lang.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, checkException, getMessage, getMessageList, getNested, getNonNestedMessage, printStackTrace, printStackTrace, printStackTrace
-
-
-
-
Constructor Detail
-
JobManagerException
public JobManagerException()
Creates newJobManagerException
without detail message.
-
JobManagerException
public JobManagerException(java.lang.String msg)
Constructs anJobManagerException
with the specified detail message.- Parameters:
msg
- the detail message.
-
JobManagerException
public JobManagerException(java.lang.Throwable nested)
Constructs anJobManagerException
with the specified detail message and nested Exception.- Parameters:
nested
- the nested exception.
-
JobManagerException
public JobManagerException(java.lang.String msg, java.lang.Throwable nested)
Constructs anJobManagerException
with the specified detail message and nested Exception.- Parameters:
msg
- the detail message.nested
- the nested exception.
-
-