1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-01-14 13:44:06 +00:00
Xray-core/app/dispatcher/errors.generated.go
2020-12-04 09:36:16 +08:00

10 lines
219 B
Go

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