summary refs log tree commit diff
path: root/crypto/src/pkcs/PkcsIOException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/pkcs/PkcsIOException.cs')
-rw-r--r--crypto/src/pkcs/PkcsIOException.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/pkcs/PkcsIOException.cs b/crypto/src/pkcs/PkcsIOException.cs

index 19f17a394..889b0fcb0 100644 --- a/crypto/src/pkcs/PkcsIOException.cs +++ b/crypto/src/pkcs/PkcsIOException.cs
@@ -8,11 +8,11 @@ namespace Org.BouncyCastle.Pkcs /// </summary> public class PkcsIOException: IOException { - public PkcsIOException(String message) : base(message) + public PkcsIOException(string message) : base(message) { } - public PkcsIOException(String message, Exception underlying) : base(message, underlying) + public PkcsIOException(string message, Exception underlying) : base(message, underlying) { } }