-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxerrors.go
58 lines (45 loc) · 1.48 KB
/
xerrors.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
package zerrors
import (
"fmt"
"golang.org/x/xerrors"
)
/**
NOTE: This file just exposes the API of xerrors for easier use
and to avoid both packages have to be imported.
*/
// Frame see: https://pkg.go.dev/golang.org/x/xerrors#Frame
type Frame = xerrors.Frame
// Printer see: https://pkg.go.dev/golang.org/x/xerrors#Printer
type Printer = xerrors.Printer
// Formatter see: https://pkg.go.dev/golang.org/x/xerrors#Formatter
type Formatter = xerrors.Formatter
// Wrapper see: https://pkg.go.dev/golang.org/x/xerrors#Wrapper
type Wrapper = xerrors.Wrapper
// As see: https://pkg.go.dev/golang.org/x/xerrors#As
func As(err error, target interface{}) bool {
return xerrors.As(err, target)
}
// Is see: https://pkg.go.dev/golang.org/x/xerrors#Is
func Is(err error, target error) bool {
return xerrors.Is(err, target)
}
// Unwrap see: https://pkg.go.dev/golang.org/x/xerrors#Unwrap
func Unwrap(err error) error {
return xerrors.Unwrap(err)
}
// Opaque see: https://pkg.go.dev/golang.org/x/xerrors#Opaque
func Opaque(err error) error {
return xerrors.Opaque(err)
}
// Errorf see: https://pkg.go.dev/golang.org/x/xerrors#Errorf
func Errorf(format string, a ...interface{}) error {
return xerrors.Errorf(format, a...)
}
// Caller see: https://pkg.go.dev/golang.org/x/xerrors#Caller
func Caller(skip int) Frame {
return xerrors.Caller(skip)
}
// FormatError see: https://pkg.go.dev/golang.org/x/xerrors#FormatError
func FormatError(f Formatter, s fmt.State, verb rune) {
xerrors.FormatError(f, s, verb)
}