1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-17 09:56:18 -05:00
v2fly/proxy/mtproto/errors.generated.go

10 lines
221 B
Go
Raw Normal View History

2018-07-04 11:48:48 -04:00
package mtproto
2021-02-16 15:31:50 -05:00
import "github.com/v2fly/v2ray-core/v4/common/errors"
2018-07-04 11:48:48 -04:00
2018-09-30 12:39:53 -04:00
type errPathObjHolder struct{}
2018-07-16 07:47:00 -04:00
func newError(values ...interface{}) *errors.Error {
2018-09-30 12:39:53 -04:00
return errors.New(values...).WithPathObj(errPathObjHolder{})
2018-07-16 07:47:00 -04:00
}