Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanpierrefortune committed Dec 4, 2023
1 parent d6ad7b9 commit d7831d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/dotnet/domain/api/MainServiceApiAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -369,15 +369,15 @@ private CardResponse ProcessCardRequest(CardRequest cardRequest, ChannelControl
throw new UnexpectedStatusWordException($"Unexpected status word: {apduResponse.StatusWord:X}");
}
}
catch (ReaderIOException ex)
catch (ReaderIOException)
{
_reader.ClosePhysicalChannel();
throw ex;
throw;
}
catch (CardIOException ex)
catch (CardIOException)
{
_reader.ClosePhysicalChannel();
throw ex;
throw;
}
}

Expand Down

0 comments on commit d7831d7

Please sign in to comment.