1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 01:15:38 +00:00
v2fly/app/log/command/errors.generated.go

10 lines
221 B
Go
Raw Normal View History

2018-02-14 16:35:09 +00:00
package command
2021-02-16 20:31:50 +00:00
import "github.com/v2fly/v2ray-core/v4/common/errors"
2018-02-14 16:35:09 +00:00
2018-09-30 16:39:53 +00:00
type errPathObjHolder struct{}
2018-02-17 20:22:28 +00:00
func newError(values ...interface{}) *errors.Error {
2018-09-30 16:39:53 +00:00
return errors.New(values...).WithPathObj(errPathObjHolder{})
2018-02-17 20:22:28 +00:00
}