2018-03-30 13:56:59 -04:00
|
|
|
package stats
|
|
|
|
|
|
|
|
import "v2ray.com/core/common/errors"
|
|
|
|
|
2018-09-30 12:39:53 -04:00
|
|
|
type errPathObjHolder struct{}
|
|
|
|
|
|
|
|
func newError(values ...interface{}) *errors.Error {
|
|
|
|
return errors.New(values...).WithPathObj(errPathObjHolder{})
|
|
|
|
}
|