Files

10 lines
217 B
Go
Raw Permalink Normal View History

2021-03-06 23:39:50 -05:00
package localdns
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}