forked from hyperledger-labs/go-perun
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patherrors.go
113 lines (97 loc) · 2.86 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// Copyright 2025 - See NOTICE file for copyright holders.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package channel
import (
"fmt"
"github.com/pkg/errors"
)
type (
// StateTransitionError happens in case of an invalid channel state transition.
StateTransitionError struct {
ID ID
}
// ActionError happens if an invalid action is applied to a channel state.
ActionError struct {
ID ID
}
// PhaseTransitionError happens in case of an invalid channel machine phase
// transition.
PhaseTransitionError struct {
ID ID
current Phase
PhaseTransition
}
)
func (e *StateTransitionError) Error() string {
return fmt.Sprintf("invalid state transition (ID: %x)", e.ID)
}
func (e *ActionError) Error() string {
return fmt.Sprintf("invalid action (ID: %x)", e.ID)
}
func (e *PhaseTransitionError) Error() string {
return fmt.Sprintf(
"invalid channel phase transition (ID: %x, current: %v, expected: %v)",
e.ID, e.current, e.PhaseTransition,
)
}
// NewStateTransitionError creates a new StateTransitionError.
func NewStateTransitionError(id ID, msg string) error {
return errors.Wrap(&StateTransitionError{
ID: id,
}, msg)
}
// NewActionError creates a new ActionError.
func NewActionError(id ID, msg string) error {
return errors.Wrap(&ActionError{
ID: id,
}, msg)
}
func newPhaseTransitionError(id ID, current Phase, expected PhaseTransition, msg string) error {
return errors.Wrap(&PhaseTransitionError{
ID: id,
current: current,
PhaseTransition: expected,
}, msg)
}
func newPhaseTransitionErrorf(
id ID,
current Phase,
expected PhaseTransition,
format string,
args ...interface{},
) error {
return errors.Wrapf(&PhaseTransitionError{
ID: id,
current: current,
PhaseTransition: expected,
}, format, args...)
}
// IsStateTransitionError returns true if the error was a StateTransitionError.
func IsStateTransitionError(err error) bool {
cause := errors.Cause(err)
_, ok := cause.(*StateTransitionError)
return ok
}
// IsActionError returns true if the error was an ActionError.
func IsActionError(err error) bool {
cause := errors.Cause(err)
_, ok := cause.(*ActionError)
return ok
}
// IsPhaseTransitionError returns true if the error was a PhaseTransitionError.
func IsPhaseTransitionError(err error) bool {
cause := errors.Cause(err)
_, ok := cause.(*PhaseTransitionError)
return ok
}