Handling Errors
val doThings: WIO[MyState, MyError, Nothing] =
WIO.pure.error(MyError()).autoNamed
val handleThatNastyError: WIO[(MyState, MyError), Nothing, MyState] =
WIO.pure(MyState(1)).autoNamed
val errorHandled: WIO[MyState, Nothing, MyState] =
doThings.handleErrorWith(handleThatNastyError)
- Flowchart
- BPMN
- Model
{
"base" : {
"meta" : {
"name" : "Do Things",
"error" : {
"name" : "My Error"
}
},
"_type" : "Pure"
},
"handler" : {
"meta" : {
"name" : "Handle That Nasty Error",
"error" : null
},
"_type" : "Pure"
},
"meta" : {
"newErrorMeta" : null,
"handledErrorMeta" : {
"name" : "My Error"
}
},
"_type" : "HandleError"
}