Fail Activity Response
data class FailActivityResponse(val dependsOn: List<ActivityDependencyResponse>? = null, val description: String? = null, val errorCode: Any, val message: Any, val name: String, val type: String, val userProperties: List<UserPropertyResponse>? = null)
This activity will fail within its own scope and output a custom error message and error code. The error message and code can provided either as a string literal or as an expression that can be evaluated to a string at runtime. The activity scope can be the whole pipeline or a control activity (e.g. foreach, switch, until), if the fail activity is contained in it.
Constructors
Link copied to clipboard
constructor(dependsOn: List<ActivityDependencyResponse>? = null, description: String? = null, errorCode: Any, message: Any, name: String, type: String, userProperties: List<UserPropertyResponse>? = null)