1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-13 19:30:43 +00:00
v2fly/features/errors.generated.go

10 lines
222 B
Go
Raw Normal View History

2018-10-13 13:15:49 +00:00
package features
import "github.com/v2fly/v2ray-core/v5/common/errors"
2018-10-13 13:15:49 +00:00
2018-10-23 20:41:27 +00:00
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}