1 Star 0 Fork 1

周涛/go_utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
error.go 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
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,
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/super_step/go_utils.git
git@gitee.com:super_step/go_utils.git
super_step
go_utils
go_utils
v1.0.6

搜索帮助

0d507c66 1850385 C8b1a773 1850385