Package de.xima.fc.workflow.model.nodes
Class FcThrowExceptionProps
- java.lang.Object
-
- de.xima.fc.workflow.taglib.model.BaseActionProps
-
- de.xima.fc.workflow.model.nodes.FcThrowExceptionProps
-
- All Implemented Interfaces:
IDescriptionProviding
,INameProviding
,Serializable
public class FcThrowExceptionProps extends BaseActionProps implements Serializable
Model class for the return action (EWorkflowNodeType.FC_THROW_EXCEPTION
).- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface de.xima.fc.entities.interfaces.IDescriptionProviding
ATTR_BESCHREIBUNG, ATTR_DESCRIPTION, COL_DESCRIPTION
-
Fields inherited from interface de.xima.fc.entities.interfaces.INameProviding
ATTR_NAME, COL_NAME
-
-
Constructor Summary
Constructors Constructor Description FcThrowExceptionProps()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getErrorData()
String
getErrorMessage()
String
getErrorType()
void
setErrorData(String errorData)
void
setErrorMessage(String errorMessage)
void
setErrorType(String errorType)
-
Methods inherited from class de.xima.fc.workflow.taglib.model.BaseActionProps
getBeschreibung, getColor, getDescription, getIcon, getName, setColor, setDescription, setIcon, setName
-
-
-
-
Method Detail
-
getErrorData
public String getErrorData()
- Returns:
- Error data to set on the exception that is thrown. When empty, the error data of the current catch block is used (if present). Must be a valid JSON value.
-
getErrorMessage
public String getErrorMessage()
- Returns:
- Error message to set on the exception that is thrown. When empty, the error message of the current catch block is used (if present).
-
getErrorType
public String getErrorType()
- Returns:
- Error type to set on the exception that is thrown. When empty, the error type of the current catch block is used (if present).
-
setErrorData
public void setErrorData(String errorData)
- Parameters:
errorData
- Error data to set on the exception that is thrown. When empty, the error data of the current catch block is used (if present). Must be a valid JSON value.
-
setErrorMessage
public void setErrorMessage(String errorMessage)
- Parameters:
errorMessage
- Error message to set on the exception that is thrown. When empty, the error message of the current catch block is used (if present).
-
setErrorType
public void setErrorType(String errorType)
- Parameters:
errorType
- type to set on the exception that is thrown. When empty, the error type of the current catch block is used (if present).
-
-