Xray-core/features/errors.generated.go
2020-12-04 09:36:16 +08:00

10 lines
217 B
Go

package features
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}