1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-15 16:38:16 -04:00
v2fly/features/stats/errors.generated.go

10 lines
203 B
Go
Raw Normal View History

2018-10-22 05:26:22 -04:00
package stats
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{})
}