org.ofbiz.service.job
Class InvalidJobException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.ofbiz.base.util.GeneralException
              extended by org.ofbiz.service.job.JobManagerException
                  extended by org.ofbiz.service.job.InvalidJobException
All Implemented Interfaces:
java.io.Serializable

public class InvalidJobException
extends JobManagerException

See Also:
Serialized Form

Constructor Summary
InvalidJobException()
          Creates new InvalidJobException without detail message.
InvalidJobException(java.lang.String msg)
          Constructs an InvalidJobException with the specified detail message.
InvalidJobException(java.lang.String msg, java.lang.Throwable nested)
          Constructs an InvalidJobException with the specified detail message and nested Exception.
InvalidJobException(java.lang.Throwable nested)
          Constructs an InvalidJobException with the specified detail message and nested Exception.
 
Method Summary
 
Methods inherited from class org.ofbiz.base.util.GeneralException
checkException, checkException, getMessage, getMessageList, getNested, getNonNestedMessage, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidJobException

public InvalidJobException()
Creates new InvalidJobException without detail message.


InvalidJobException

public InvalidJobException(java.lang.String msg)
Constructs an InvalidJobException with the specified detail message.

Parameters:
msg - the detail message.

InvalidJobException

public InvalidJobException(java.lang.Throwable nested)
Constructs an InvalidJobException 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 an InvalidJobException with the specified detail message and nested Exception.

Parameters:
msg - the detail message.
nested - the nested exception.