v2ray-core/features/stats/errors.generated.go

10 lines
203 B
Go
Raw Normal View History

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