Package de.xima.fc.exceptions
Class WorkflowTaskExecutionException
- java.lang.Object
 - 
- java.lang.Throwable
 - 
- java.lang.Exception
 - 
- de.xima.fc.exceptions.AbstractXfcException
 - 
- de.xima.fc.exceptions.WorkflowProcessingException
 - 
- de.xima.fc.exceptions.WorkflowTaskExecutionException
 
 
 
 
 
 
- 
- All Implemented Interfaces:
 IXfcException,Serializable
public class WorkflowTaskExecutionException extends WorkflowProcessingException
Exception thrown by the task runner when a task could not be executed. Please note that this exception should node be used by the execute method of individualWorkflowNodes.- Since:
 - 7.0.0
 - Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description WorkflowTaskExecutionException(ITaskExecutionErrorResult result, String message)WorkflowTaskExecutionException(ITaskExecutionErrorResult result, String message, Throwable cause)WorkflowTaskExecutionException(ITaskExecutionErrorResult result, Throwable cause) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ITaskExecutionErrorResultgetExecutionResult()- 
Methods inherited from class de.xima.fc.exceptions.WorkflowProcessingException
getDefaultErrorCode, getDefaultMessageKey 
- 
Methods inherited from class de.xima.fc.exceptions.AbstractXfcException
getErrorCode, getExceptionData, getLocalizedMessage, getMessageKey, getMessageParams 
- 
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
WorkflowTaskExecutionException
public WorkflowTaskExecutionException(ITaskExecutionErrorResult result, String message)
 
- 
WorkflowTaskExecutionException
public WorkflowTaskExecutionException(ITaskExecutionErrorResult result, String message, Throwable cause)
 
- 
WorkflowTaskExecutionException
public WorkflowTaskExecutionException(ITaskExecutionErrorResult result, Throwable cause)
 
 - 
 
- 
Method Detail
- 
getExecutionResult
public ITaskExecutionErrorResult getExecutionResult()
- Returns:
 - The form record that was passed in to the task runner. May be a different instance when the form record was updated in the database.
 
 
 - 
 
 -