2018-02-17 21:22:51 +01:00
|
|
|
package json
|
|
|
|
|
|
|
|
import "v2ray.com/core/common/errors"
|
|
|
|
|
2018-09-30 18:39:53 +02:00
|
|
|
type errPathObjHolder struct{}
|
|
|
|
|
|
|
|
func newError(values ...interface{}) *errors.Error {
|
|
|
|
return errors.New(values...).WithPathObj(errPathObjHolder{})
|
|
|
|
}
|