2017-04-08 23:43:25 +00:00
|
|
|
package retry
|
|
|
|
|
|
|
|
import "v2ray.com/core/common/errors"
|
|
|
|
|
2018-09-30 16:39:53 +00:00
|
|
|
type errPathObjHolder struct{}
|
|
|
|
|
|
|
|
func newError(values ...interface{}) *errors.Error {
|
|
|
|
return errors.New(values...).WithPathObj(errPathObjHolder{})
|
|
|
|
}
|