1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-12 10:50:43 +00:00
v2fly/app/dns/errors.generated.go

10 lines
217 B
Go
Raw Permalink Normal View History

2017-04-08 23:43:25 +00:00
package dns
import "github.com/v2fly/v2ray-core/v5/common/errors"
2017-04-08 23:43:25 +00:00
2018-09-30 16:39:53 +00:00
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}