代码拉取完成,页面将自动刷新
package myError
import (
"fmt"
"runtime"
)
type Error struct {
msg string
where []string
}
func (e *Error) Error() string {
return fmt.Sprintf("{\"where\":\"%v\", \"msg\": \"%s\"}",
e.where, e.msg)
}
func (e *Error) GetMsg() string {
return e.msg
}
func (e *Error) GetWhere() string {
return e.msg
}
func New(format string, args ...interface{}) *Error {
where := getWhere()
format = getFormat(format, args)
return &Error{
msg: format,
where: []string{where},
}
}
func getWhere() string {
_, file, line, _ := runtime.Caller(2)
return fmt.Sprintf("%s(%d)", file, line)
}
func getFormat(format string, args []interface{}) string {
if len(args) > 0 {
format = fmt.Sprintf(format, args...)
}
return format
}
func Warp(err error, format string, args ...interface{}) *Error {
where := getWhere()
format = getFormat(format, args)
if err == nil {
return &Error{
msg: format,
where: []string{where},
}
}
var whereSlice []string
switch t := err.(type) {
case *Error:
// 继承where
whereSlice = append(t.where, where)
// 拼接上之前的错误
format = t.msg + " -> " + format
default:
whereSlice = []string{where}
format = format + " -> " + err.Error()
}
return &Error{
msg: format,
where: whereSlice,
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。