1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-06-07 08:13:35 -04:00
v2fly/common/templates/errors.generated.go
2021-03-06 04:41:24 +00:00

10 lines
223 B
Go

package templates
import "github.com/v2fly/v2ray-core/v4/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}