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

index 3d51d799e..c4314b498 100644 --- a/crypto/src/openssl/PEMException.cs +++ b/crypto/src/openssl/PEMException.cs
@@ -1,24 +1,30 @@ using System; using System.IO; +using System.Runtime.Serialization; namespace Org.BouncyCastle.OpenSsl { -#if !PORTABLE [Serializable] -#endif public class PemException : IOException { - public PemException( - string message) + public PemException() + : base() + { + } + + public PemException(string message) : base(message) { } - public PemException( - string message, - Exception exception) - : base(message, exception) + public PemException(string message, Exception innerException) + : base(message, innerException) + { + } + + protected PemException(SerializationInfo info, StreamingContext context) + : base(info, context) { } }