You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/pkg/errs/coderr.go

57 lines
786 B

2 years ago
package errs
import (
"fmt"
"github.com/pkg/errors"
"strings"
)
2 years ago
type CodeError interface {
2 years ago
Code() int
Msg() string
2 years ago
Wrap(msg ...string) error
2 years ago
error
}
2 years ago
func NewCodeError(code int, msg string) CodeError {
return &codeError{
2 years ago
code: code,
msg: msg,
}
}
2 years ago
type codeError struct {
2 years ago
code int
msg string
detail string
}
2 years ago
func (e *codeError) Code() int {
2 years ago
return e.code
}
2 years ago
func (e *codeError) Msg() string {
2 years ago
return e.msg
}
2 years ago
func (e *codeError) Wrap(w ...string) error {
2 years ago
return errors.Wrap(e, strings.Join(w, ", "))
}
2 years ago
func (e *codeError) Error() string {
2 years ago
return fmt.Sprintf("[%d]%s", e.code, e.msg)
}
func Unwrap(err error) error {
2 years ago
for err != nil {
unwrap, ok := err.(interface {
Unwrap() error
})
if !ok {
break
}
err = unwrap.Unwrap()
}
return err
2 years ago
}