org.ofbiz.service.job
Class JobManagerException

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
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
InvalidJobException

public class JobManagerException
extends GeneralException

Job Scheduler Exception

See Also:
Serialized Form

Constructor Summary
JobManagerException()
          Creates new JobManagerException without detail message.
JobManagerException(java.lang.String msg)
          Constructs an JobManagerException with the specified detail message.
JobManagerException(java.lang.String msg, java.lang.Throwable nested)
          Constructs an JobManagerException with the specified detail message and nested Exception.
JobManagerException(java.lang.Throwable nested)
          Constructs an JobManagerException 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

JobManagerException

public JobManagerException()
Creates new JobManagerException without detail message.


JobManagerException

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

Parameters:
msg - the detail message.

JobManagerException

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

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