v2fly/common/platform/ctlcmd/errors.generated.go

10 lines
220 B
Go
Raw Normal View History

2018-04-08 21:22:55 +00:00
package ctlcmd
2021-02-16 20:31:50 +00:00
import "github.com/v2fly/v2ray-core/v4/common/errors"
2018-04-08 21:22:55 +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
}