forked from bykof/stateful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
61 lines (51 loc) · 1.27 KB
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package stateful
import (
"fmt"
)
type (
TransitionRuleNotFoundError struct {
transition Transition
}
CannotRunFromStateError struct {
stateMachine StateMachine
transitionRule TransitionRule
}
CannotTransferToStateError struct {
state State
}
)
func NewTransitionRuleNotFoundError(transition Transition) *TransitionRuleNotFoundError {
return &TransitionRuleNotFoundError{
transition: transition,
}
}
func NewCannotRunFromStateError(stateMachine StateMachine, transitionRule TransitionRule) *CannotRunFromStateError {
return &CannotRunFromStateError{
stateMachine: stateMachine,
transitionRule: transitionRule,
}
}
func NewCannotTransferToStateError(state State) *CannotTransferToStateError {
return &CannotTransferToStateError{
state: state,
}
}
func (trnfe TransitionRuleNotFoundError) Error() string {
return fmt.Sprintf(
"no transitionRule found for given transition %s",
trnfe.transition.GetName(),
)
}
func (crfse CannotRunFromStateError) Error() string {
return fmt.Sprintf(
"you cannot run %s from state %s",
crfse.transitionRule.Transition.GetName(),
crfse.stateMachine.StatefulObject.State(),
)
}
func (cttse CannotTransferToStateError) Error() string {
return fmt.Sprintf(
"you cannot transfer to state %s",
cttse.state,
)
}