diff options
Diffstat (limited to 'crypto/src/openpgp/PgpPublicKeyEncryptedData.cs')
-rw-r--r-- | crypto/src/openpgp/PgpPublicKeyEncryptedData.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/crypto/src/openpgp/PgpPublicKeyEncryptedData.cs b/crypto/src/openpgp/PgpPublicKeyEncryptedData.cs index 8c6fcda53..645973215 100644 --- a/crypto/src/openpgp/PgpPublicKeyEncryptedData.cs +++ b/crypto/src/openpgp/PgpPublicKeyEncryptedData.cs @@ -45,9 +45,9 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp throw new PgpException("unknown asymmetric algorithm: " + algorithm); } } - catch (PgpException e) + catch (PgpException) { - throw e; + throw; } catch (Exception e) { @@ -116,9 +116,9 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp cipher = CipherUtilities.GetCipher(cName); } - catch (PgpException e) + catch (PgpException) { - throw e; + throw; } catch (Exception e) { @@ -175,9 +175,9 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp return encStream; } - catch (PgpException e) + catch (PgpException) { - throw e; + throw; } catch (Exception e) { |