2018-04-09 11:43:13 +02:00
|
|
|
package external
|
|
|
|
|
|
|
|
|
|
import "v2ray.com/core/common/errors"
|
|
|
|
|
|
2018-09-30 18:39:53 +02:00
|
|
|
type errPathObjHolder struct{}
|
|
|
|
|
|
2018-05-25 11:56:01 +02:00
|
|
|
func newError(values ...interface{}) *errors.Error {
|
2018-09-30 18:39:53 +02:00
|
|
|
return errors.New(values...).WithPathObj(errPathObjHolder{})
|
2018-05-25 11:56:01 +02:00
|
|
|
}
|