1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-07-05 16:38:17 -04:00

add autogenerated subscriptionmgr err

This commit is contained in:
Shelikhoo 2025-01-14 20:24:26 +00:00
parent 3b4ba525df
commit 32b625be48
No known key found for this signature in database
GPG Key ID: 4C9764E9FE80A3DC

View File

@ -0,0 +1,9 @@
package command
import "github.com/v2fly/v2ray-core/v5/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}