1 Star 0 Fork 0

menuiis / gkit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
err.go 271 Bytes
一键复制 编辑 原始数据 按行查看 历史
SongZhibin97 提交于 2022-01-28 20:58 . feat:reflect抽出
package reflect2value
type errNonsupportType struct {
valueType string
}
func NewErrNonsupportType(valueType string) error {
return &errNonsupportType{valueType: valueType}
}
func (e *errNonsupportType) Error() string {
return e.valueType + ":不是支持类型"
}
Go
1
https://gitee.com/menciis/gkit.git
git@gitee.com:menciis/gkit.git
menciis
gkit
gkit
4f74120a101e

搜索帮助