SMILA 1.0 API documentation

org.eclipse.smila.jobmanager.taskgenerator
Class TaskGeneratorException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.eclipse.smila.utils.MaybeRecoverableException
              extended by org.eclipse.smila.jobmanager.exceptions.JobManagerException
                  extended by org.eclipse.smila.jobmanager.taskgenerator.TaskGeneratorException
All Implemented Interfaces:
java.io.Serializable

public class TaskGeneratorException
extends JobManagerException

Exception thrown by task generators if errors occur when generating tasks.

See Also:
Serialized Form

Constructor Summary
TaskGeneratorException(java.lang.String message)
          create exception with description, recoverable flag will be false.
TaskGeneratorException(java.lang.String message, boolean recoverable)
          create exception with description and custom recoverable flag.
TaskGeneratorException(java.lang.String message, java.lang.Throwable cause)
          create exception with description and cause, recoverable flag will be derived from cause.
TaskGeneratorException(java.lang.String message, java.lang.Throwable cause, boolean recoverable)
          create exception with description,cause and custom recoverable flag.
 
Method Summary
 
Methods inherited from class org.eclipse.smila.jobmanager.exceptions.JobManagerException
isRecoverableCause
 
Methods inherited from class org.eclipse.smila.utils.MaybeRecoverableException
isRecoverable
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TaskGeneratorException

public TaskGeneratorException(java.lang.String message)
create exception with description, recoverable flag will be false.


TaskGeneratorException

public TaskGeneratorException(java.lang.String message,
                              java.lang.Throwable cause)
create exception with description and cause, recoverable flag will be derived from cause.


TaskGeneratorException

public TaskGeneratorException(java.lang.String message,
                              boolean recoverable)
create exception with description and custom recoverable flag.


TaskGeneratorException

public TaskGeneratorException(java.lang.String message,
                              java.lang.Throwable cause,
                              boolean recoverable)
create exception with description,cause and custom recoverable flag.


SMILA 1.0 API documentation