1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/cms/SignerInformation.cs b/crypto/src/cms/SignerInformation.cs
index 2e32a3ae6..116e349f0 100644
--- a/crypto/src/cms/SignerInformation.cs
+++ b/crypto/src/cms/SignerInformation.cs
@@ -612,9 +612,9 @@ namespace Org.BouncyCastle.Cms
throw new CmsException("algorithm: " + algorithm + " not supported in base signatures.");
}
}
- catch (SecurityUtilityException e)
+ catch (SecurityUtilityException)
{
- throw e;
+ throw;
}
catch (GeneralSecurityException e)
{
|