-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.go
52 lines (44 loc) · 1.05 KB
/
error.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
package epplib
import (
"fmt"
)
// Value represent the value element in an EPP error.
type Value struct {
Element string
Value string
}
// ExtValue represent the extvalue element in an EPP error.
type ExtValue struct {
Element string
Value string
Namespace string
Reason string
}
// EppError represent the data needed for an EPP error.
type EppError struct {
Code int
Message string
Values []Value
ExtValues []ExtValue
}
// Error implements the error interface.
func (err *EppError) Error() string {
return fmt.Sprintf("%d: %s", err.Code, err.Message)
}
// NewError create a new Error.
func NewError(code int) *EppError {
return &EppError{
Code: code,
Message: StatusText(code),
}
}
// WithExtValues add extvalue data to the error.
func (err *EppError) WithExtValues(extValue ...ExtValue) *EppError {
err.ExtValues = append(err.ExtValues, extValue...)
return err
}
// WithValues add value data to the error.
func (err *EppError) WithValues(value ...Value) *EppError {
err.Values = append(err.Values, value...)
return err
}