Package org.apache.ofbiz.service.job
Class InvalidJobException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.ofbiz.base.util.GeneralException
-
- org.apache.ofbiz.service.job.JobManagerException
-
- org.apache.ofbiz.service.job.InvalidJobException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidJobException extends JobManagerException
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidJobException()
Creates newInvalidJobException
without detail message.InvalidJobException(java.lang.String msg)
Constructs anInvalidJobException
with the specified detail message.InvalidJobException(java.lang.String msg, java.lang.Throwable nested)
Constructs anInvalidJobException
with the specified detail message and nested Exception.InvalidJobException(java.lang.Throwable nested)
Constructs anInvalidJobException
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
-
InvalidJobException
public InvalidJobException()
Creates newInvalidJobException
without detail message.
-
InvalidJobException
public InvalidJobException(java.lang.String msg)
Constructs anInvalidJobException
with the specified detail message.- Parameters:
msg
- the detail message.
-
InvalidJobException
public InvalidJobException(java.lang.Throwable nested)
Constructs anInvalidJobException
with the specified detail message and nested Exception.- Parameters:
nested
- the nested exception.
-
InvalidJobException
public InvalidJobException(java.lang.String msg, java.lang.Throwable nested)
Constructs anInvalidJobException
with the specified detail message and nested Exception.- Parameters:
msg
- the detail message.nested
- the nested exception.
-
-