Files
v2fly/main/formats/errors.generated.go
T

10 lines
221 B
Go
Raw Normal View History

2021-02-21 23:02:42 +08:00
package formats
2018-02-17 21:22:51 +01:00
2021-02-17 04:31:50 +08:00
import "github.com/v2fly/v2ray-core/v4/common/errors"
2018-02-17 21:22:51 +01:00
2018-09-30 18:39:53 +02:00
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}