diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-03-16 12:41:05 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2023-03-16 12:41:05 +0700 |
commit | fdeafa10e2dcfee734d050f2f11ab50a350f69cc (patch) | |
tree | b839357e0bea77bf7c192671b77539b9051162a0 /crypto/src/tls/ClientHello.cs | |
parent | Fix non-8-aligned IPv4 netmask parsing (diff) | |
download | BouncyCastle.NET-ed25519-fdeafa10e2dcfee734d050f2f11ab50a350f69cc.tar.xz |
Fix rethrow syntax
- see https://github.com/bcgit/bc-csharp/issues/425
Diffstat (limited to 'crypto/src/tls/ClientHello.cs')
-rw-r--r-- | crypto/src/tls/ClientHello.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/tls/ClientHello.cs b/crypto/src/tls/ClientHello.cs index 574264491..ab0125b55 100644 --- a/crypto/src/tls/ClientHello.cs +++ b/crypto/src/tls/ClientHello.cs @@ -103,9 +103,9 @@ namespace Org.BouncyCastle.Tls { return ImplParse(messageInput, dtlsOutput); } - catch (TlsFatalAlert e) + catch (TlsFatalAlert) { - throw e; + throw; } catch (IOException e) { |