1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 03:25:23 +00:00
v2fly/main/jsonem/errors.generated.go

10 lines
204 B
Go
Raw Normal View History

2020-01-03 01:26:48 +00:00
package jsonem
import "v2ray.com/core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}