1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-06 21:34:19 -04:00
v2fly/main/confloader/external/errors.generated.go

10 lines
206 B
Go
Raw Normal View History

2018-04-09 05:43:13 -04:00
package external
import "v2ray.com/core/common/errors"
2018-09-30 12:39:53 -04:00
type errPathObjHolder struct{}
2018-05-25 05:56:01 -04:00
func newError(values ...interface{}) *errors.Error {
2018-09-30 12:39:53 -04:00
return errors.New(values...).WithPathObj(errPathObjHolder{})
2018-05-25 05:56:01 -04:00
}