2 Star 9 Fork 3

godcong/fate

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
error.go 201 Bytes
一键复制 编辑 原始数据 按行查看 历史
godcong 提交于 2020-02-10 16:22 . fix comment
package fate
import (
"fmt"
"strings"
)
// Wrap ...
func Wrap(err error, msg ...string) error {
if err != nil {
m := strings.Join(msg, " ")
return fmt.Errorf("%s:%w", m, err)
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/godcong/fate.git
git@gitee.com:godcong/fate.git
godcong
fate
fate
master

搜索帮助