1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/features/stats/errors.generated.go

10 lines
219 B
Go
Raw Normal View History

2018-10-22 11:26:22 +02:00
package stats
2021-02-17 04:31:50 +08:00
import "github.com/v2fly/v2ray-core/v4/common/errors"
2018-10-22 11:26:22 +02:00
2018-10-23 22:41:27 +02:00
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}