diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-06-24 15:07:29 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-06-24 15:07:29 +0700 |
commit | b72579c4b1200459f959bcd6a25364e239420573 (patch) | |
tree | 5e566cc2b7972cd8ccebece92d879bddc800393d /crypto/src/openssl/PasswordException.cs | |
parent | Remove certpath from PkixCertPathValidatorException (diff) | |
download | BouncyCastle.NET-ed25519-b72579c4b1200459f959bcd6a25364e239420573.tar.xz |
Cleanup Exception classes
Diffstat (limited to 'crypto/src/openssl/PasswordException.cs')
-rw-r--r-- | crypto/src/openssl/PasswordException.cs | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/crypto/src/openssl/PasswordException.cs b/crypto/src/openssl/PasswordException.cs index c920cc7a8..d056bb9b0 100644 --- a/crypto/src/openssl/PasswordException.cs +++ b/crypto/src/openssl/PasswordException.cs @@ -1,24 +1,30 @@ using System; using System.IO; +using System.Runtime.Serialization; namespace Org.BouncyCastle.Security { -#if !PORTABLE [Serializable] -#endif public class PasswordException : IOException { - public PasswordException( - string message) + public PasswordException() + : base() + { + } + + public PasswordException(string message) : base(message) { } - public PasswordException( - string message, - Exception exception) - : base(message, exception) + public PasswordException(string message, Exception innerException) + : base(message, innerException) + { + } + + protected PasswordException(SerializationInfo info, StreamingContext context) + : base(info, context) { } } |