1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-07-14 05:00:13 -04:00
Files
v2fly/transport/internet/domainsocket/errors.generated.go

10 lines
226 B
Go
Raw Normal View History

2017-11-03 12:39:43 +08:00
package domainsocket
import "github.com/v2fly/v2ray-core/v5/common/errors"
2017-11-03 12:39:43 +08:00
2018-09-30 18:39:53 +02:00
type errPathObjHolder struct{}
2018-05-25 11:56:01 +02:00
func newError(values ...interface{}) *errors.Error {
2018-09-30 18:39:53 +02:00
return errors.New(values...).WithPathObj(errPathObjHolder{})
2018-05-25 11:56:01 +02:00
}