1 Star 0 Fork 0

leeqiang250 / go-common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
error-local.go 222 Bytes
一键复制 编辑 原始数据 按行查看 历史
leeqiang250 提交于 2021-12-10 18:54 . fix bug.
package _struct
type Error struct {
Description string
}
func (this *Error) Error() string {
return this.Description
}
var NotSupportError *Error
func init() {
NotSupportError = &Error{Description: "not support"}
}
1
https://gitee.com/leeqiang250/go-common.git
git@gitee.com:leeqiang250/go-common.git
leeqiang250
go-common
go-common
43dd9f0fd141

搜索帮助