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

10 lines
218 B
Go
Raw Normal View History

2018-03-01 13:16:52 +01:00
package http
2021-02-17 04:31:50 +08:00
import "github.com/v2fly/v2ray-core/v4/common/errors"
2018-03-01 13:16:52 +01:00
2018-09-30 18:39:53 +02:00
type errPathObjHolder struct{}
2018-03-08 21:07:01 +01:00
func newError(values ...interface{}) *errors.Error {
2018-09-30 18:39:53 +02:00
return errors.New(values...).WithPathObj(errPathObjHolder{})
2018-03-08 21:07:01 +01:00
}