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