1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-11 06:24:21 -04:00
v2fly/main/jsonem/errors.generated.go
2019-12-14 23:48:56 +08:00

10 lines
204 B
Go

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