-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherrors.go
51 lines (41 loc) · 1.29 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
package rulesengine
import "fmt"
// UndefinedFactError represents an error for an undefined fact
type UndefinedFactError struct {
Message string
Code string
}
// Error implements the error interface for UndefinedFactError
func (e *UndefinedFactError) Error() string {
return fmt.Sprintf("%s: %s", e.Code, e.Message)
}
// NewUndefinedFactError creates a new UndefinedFactError instance
func NewUndefinedFactError(message string) *UndefinedFactError {
return &UndefinedFactError{
Message: message,
Code: "UNDEFINED_FACT",
}
}
// InvalidRuleError represents an error for an invalid rule
type InvalidRuleError struct {
Message string
Code string
}
func (e *InvalidRuleError) Error() string {
return fmt.Sprintf("%s: %s", e.Code, e.Message)
}
func NewInvalidRuleError(message string, code string) *InvalidRuleError {
return &InvalidRuleError{
Message: message,
Code: code,
}
}
func NewInvalidPriorityTypeError() *InvalidRuleError {
return NewInvalidRuleError("Priority must be an integer", "INVALID_PRIORITY_TYPE")
}
func NewInvalidPriorityValueError() *InvalidRuleError {
return NewInvalidRuleError("Priority must be greater than zero", "INVALID_PRIORITY_VALUE")
}
func NewPriorityNotSetError() *InvalidRuleError {
return NewInvalidRuleError("Priority not set", "PRIORITY_NOT_SET")
}