1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/src/tls/DtlsClientProtocol.cs b/crypto/src/tls/DtlsClientProtocol.cs
index 92478dc46..3b32c044e 100644
--- a/crypto/src/tls/DtlsClientProtocol.cs
+++ b/crypto/src/tls/DtlsClientProtocol.cs
@@ -69,12 +69,12 @@ namespace Org.BouncyCastle.Tls
catch (TlsFatalAlert fatalAlert)
{
AbortClientHandshake(state, recordLayer, fatalAlert.AlertDescription);
- throw fatalAlert;
+ throw;
}
- catch (IOException e)
+ catch (IOException)
{
AbortClientHandshake(state, recordLayer, AlertDescription.internal_error);
- throw e;
+ throw;
}
catch (Exception e)
{
|