github.com/jtzjtz/kit@v1.0.2/error_n/error.go (about) 1 package error_n 2 3 type ErrorN struct { 4 ErrStr string 5 } 6 7 func (e ErrorN) Error() string { 8 return e.ErrStr 9 } 10 11 //生成一个新error 12 func Error(errStr string) ErrorN { 13 return ErrorN{ErrStr: errStr} 14 }