1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 07:27:20 -05:00
v2fly/app/router/errors.generated.go

10 lines
220 B
Go
Raw Normal View History

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