1Panel/backend/buserr/errors.go
2022-12-01 19:26:35 +08:00

33 lines
566 B
Go

package buserr
import (
"github.com/1Panel-dev/1Panel/backend/i18n"
"github.com/pkg/errors"
)
type BusinessError struct {
Msg string
Detail interface{}
Err error
}
func (e BusinessError) Error() string {
content := i18n.GetErrMsg(e.Msg, map[string]interface{}{"detail": e.Detail})
if content == "" {
if e.Err != nil {
return e.Err.Error()
}
return errors.New(e.Msg).Error()
}
return content
}
func New(Key string, detail interface{}, err error) BusinessError {
return BusinessError{
Msg: Key,
Detail: detail,
Err: err,
}
}