v2ray-core/transport/internet/http/errors.generated.go

10 lines
202 B
Go
Raw Normal View History

2018-03-01 12:16:52 +00:00
package http
import "v2ray.com/core/common/errors"
2018-09-30 16:39:53 +00:00
type errPathObjHolder struct{}
2018-03-08 20:07:01 +00:00
func newError(values ...interface{}) *errors.Error {
2018-09-30 16:39:53 +00:00
return errors.New(values...).WithPathObj(errPathObjHolder{})
2018-03-08 20:07:01 +00:00
}