Class InvalidInputWorkflowException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.opensymphony.workflow.WorkflowException
org.ametys.cms.workflow.InvalidInputWorkflowException
All Implemented Interfaces:
Serializable

public class InvalidInputWorkflowException extends com.opensymphony.workflow.WorkflowException
WorkflowException which can be thrown in a FunctionProvider if the input is invalid.

This is an validation error which will be handled in a special manner.

See Also:
  • Constructor Details

    • InvalidInputWorkflowException

      public InvalidInputWorkflowException(String message, ValidationResults validationResults)
      Constructs a new invalid input workflow exception with the specified detail message.
      Parameters:
      validationResults - The validation results
      message - The detail message.
    • InvalidInputWorkflowException

      public InvalidInputWorkflowException(String message, ValidationResults validationResults, Throwable cause)
      Constructs a new invalid input workflow exception with the specified detail message and cause.
      Parameters:
      message - The detail message.
      validationResults - The validation results
      cause - The cause.
    • InvalidInputWorkflowException

      public InvalidInputWorkflowException(ValidationResults validationResults, Throwable cause)
      Constructs a new invalid input workflow exception with the specified cause.
      Parameters:
      validationResults - The validation results
      cause - The cause.
  • Method Details