Refactor error handler

This commit is contained in:
世界 2022-06-30 21:04:30 +08:00
parent 14c8cee479
commit 574f87527b
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 13 additions and 13 deletions

View file

@ -228,6 +228,6 @@ func (w *nonePacketWriter) Upstream() any {
return w.source
}
func (s *NoneService) HandleError(err error) {
s.handler.HandleError(err)
func (s *NoneService) NewError(ctx context.Context, err error) {
s.handler.NewError(ctx, err)
}