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:
  • Constructor Details

    • FcThrowExceptionProps

      public FcThrowExceptionProps()
  • Method Details

    • 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).