forked from p93542168/wheat-cache
13 lines
198 B
Go
13 lines
198 B
Go
|
package errorx
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
// New TODO 添加链路追踪等 @bandl @lgq
|
||
|
func New(msg string, opt ...interface{}) error {
|
||
|
msg = fmt.Sprintf(msg, opt...)
|
||
|
return errors.New(msg)
|
||
|
}
|