2 Star 2 Fork 9

王布衣/gox

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
errors.go 760 Bytes
一键复制 编辑 原始数据 按行查看 历史
王布衣 提交于 2023-12-23 07:04 . 优化部分代码
package exception
import (
"fmt"
)
type Throwable interface {
error
Code() int
}
type Exception struct {
Throwable
code int
message string
}
// New 创建一个新的错误信息, 包含一个状态码和信息
func New(code int, message string, a ...any) *Exception {
return &Exception{
code: code,
message: fmt.Sprintf(message, a...),
}
}
// 格式化输出错误信息
func (this Exception) Error() string {
return fmt.Sprintf("#%d, message=%s", this.code, this.message)
}
func (this Exception) Code() int {
return this.code
}
// PanicIgnore 忽略panic, 继续执行
func PanicIgnore() {
// 解析失败以后输出日志, 以备检查
if err := recover(); err != nil {
//logger.Errorf("panic ignore, error=%+v\n", err)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/quant1x/gox.git
git@gitee.com:quant1x/gox.git
quant1x
gox
gox
v1.16.4

搜索帮助