1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-06 13:25:13 -04:00
v2fly/proxy/http/errors.generated.go

10 lines
202 B
Go
Raw Normal View History

2017-04-08 19:43:25 -04:00
package http
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{})
}