Xray-core/features/errors.generated.go

10 lines
220 B
Go
Raw Normal View History

2020-11-25 11:01:53 +00:00
package features
import "github.com/xtls/xray-core/v1/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}