Skip to content

Latest commit

 

History

History

error

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Error

This activity allows you to cause an explicit error in the flow (throw an error).

Installation

Flogo CLI

flogo install  github.com/project-flogo/contrib/activity/error

Configuration

Input:

Name Type Description
message string The error message
data any The error data

Configuration Examples

The below example throws a simple error with a message:

{
  "id": "throw_error",
  "name": "Throw Error",
  "activity": {
    "ref": "github.com/project-flogo/contrib/activity/error",
    "input": {
      "message": "Unexpected Threshold Value"
    }
  }
}