10 lines
239 B
Nim
10 lines
239 B
Nim
|
import pkg/questionable
|
||
|
import ../statemachine
|
||
|
import ./errored
|
||
|
|
||
|
type
|
||
|
ErrorHandlingState* = ref object of SaleState
|
||
|
|
||
|
method onError*(state: ErrorHandlingState, error: ref CatchableError): ?State =
|
||
|
some State(SaleErrored(error: error))
|