Files
v2fly/transport/internet/quic/errors.generated.go
T

10 lines
202 B
Go
Raw Normal View History

2018-11-21 16:47:06 +01:00
package quic
import "v2ray.com/core/common/errors"
2018-11-21 22:02:19 +01:00
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}