Package de.uka.ipd.sdq.workflow.jobs
Class JobFailedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.uka.ipd.sdq.workflow.jobs.JobFailedException
-
- All Implemented Interfaces:
Serializable
public class JobFailedException extends Exception
Exception to be thrown if the execute method of a job terminates unrecoverable.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JobFailedException()
Instantiates a new job failed exception.JobFailedException(String string)
Instantiates a new job failed exception.JobFailedException(String string, Throwable e)
Instantiates a new job failed exception.JobFailedException(CoreException e)
Instantiates a new job failed exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
JobFailedException
public JobFailedException()
Instantiates a new job failed exception.
-
JobFailedException
public JobFailedException(String string)
Instantiates a new job failed exception.- Parameters:
string
- the string
-
JobFailedException
public JobFailedException(String string, Throwable e)
Instantiates a new job failed exception.- Parameters:
string
- the stringe
- the e
-
JobFailedException
public JobFailedException(CoreException e)
Instantiates a new job failed exception.- Parameters:
e
- the e
-
-