-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherrors.go
46 lines (39 loc) · 1.03 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
package sfdc
import (
"errors"
"fmt"
"strings"
)
type SalesforceError struct {
Fields []string `json:"fields"`
ErrorCode string `json:"errorCode"`
Message string `json:"message"`
}
type SalesforceErrorResponse []*SalesforceError
func (er *SalesforceErrorResponse) GetErrorString() string {
parts := []string{}
for _, e := range *er {
f := strings.Join(e.Fields, ", ")
fs := "[%s] %s"
if f != "" {
fs += fmt.Sprintf(" (%s)", f)
}
s := fmt.Sprintf(fs, e.ErrorCode, e.Message)
parts = append(parts, s)
}
result := fmt.Sprintf("error: %s", strings.Join(parts, "; "))
return result
}
func (er *SalesforceErrorResponse) GetError() error {
return errors.New(er.GetErrorString())
}
type AuthErrorResponse struct {
Error string `json:"error"`
ErrorDescription string `json:"error_description"`
}
func (a *AuthErrorResponse) GetErrorString() string {
return fmt.Sprintf("error: [%s] %s", a.Error, a.ErrorDescription)
}
func (a *AuthErrorResponse) GetError() error {
return errors.New(a.GetErrorString())
}