1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-02-24 09:40:43 +00:00

10 lines
225 B
Go
Raw Normal View History

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