diff options
Diffstat (limited to 'crypto/src/x509/X509V2AttributeCertificate.cs')
-rw-r--r-- | crypto/src/x509/X509V2AttributeCertificate.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/x509/X509V2AttributeCertificate.cs b/crypto/src/x509/X509V2AttributeCertificate.cs index b5a316d76..836213fdc 100644 --- a/crypto/src/x509/X509V2AttributeCertificate.cs +++ b/crypto/src/x509/X509V2AttributeCertificate.cs @@ -27,9 +27,9 @@ namespace Org.BouncyCastle.X509 { return AttributeCertificate.GetInstance(Asn1Object.FromStream(input)); } - catch (IOException e) + catch (IOException) { - throw e; + throw; } catch (Exception e) { |