Property | Description | |
Comments | Optional. Specifies a descriptive comment for the step. | |
Label | Optional. (Required if you are using this EXIT step as a target for a BRANCH step.) Specifies a name for this specific step, or a null, unmatched, or empty string ($null, $default, blank). | |
Exit from | Required. Specifies the flow step or service from which you want to exit. | |
Specify this value… | To exit the… | |
$parent | Parent flow step, regardless of the type of step. | |
$loop | Nearest parent LOOP or REPEAT step. | |
$flow | Entire flow. | |
label | Nearest ancestor step that has a label that matches this value. Note: If the label you specify does not match the label of an ancestor flow step, the flow will exit with an exception. | |
Signal | Required. Specifies whether the exit is considered a success or a failure. A SUCCESS condition exits the flow service or step. A FAILURE condition exits the flow service or step and throws an exception. The text of the exception message is contained in the Failure message property. | |
Failure message | Optional. Specifies the text of the exception message that is displayed when Signal is set to FAILURE. If you want to use the value of a pipeline variable for this property, type the variable name between % symbols. For example, %mymessage%. The variable you specify must be a String. |