1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-13 03:10:44 +00:00
v2fly/proxy/socks/errors.generated.go

10 lines
219 B
Go
Raw Normal View History

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