2018-10-13 13:15:49 +00:00
|
|
|
package features
|
|
|
|
|
|
|
|
import "v2ray.com/core/common/errors"
|
|
|
|
|
2018-10-23 20:41:27 +00:00
|
|
|
type errPathObjHolder struct{}
|
|
|
|
|
|
|
|
func newError(values ...interface{}) *errors.Error {
|
|
|
|
return errors.New(values...).WithPathObj(errPathObjHolder{})
|
|
|
|
}
|