diff options
Diffstat (limited to 'crypto/src/security/GeneralSecurityException.cs')
-rw-r--r-- | crypto/src/security/GeneralSecurityException.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/crypto/src/security/GeneralSecurityException.cs b/crypto/src/security/GeneralSecurityException.cs new file mode 100644 index 000000000..2c3f2a555 --- /dev/null +++ b/crypto/src/security/GeneralSecurityException.cs @@ -0,0 +1,29 @@ +using System; + +namespace Org.BouncyCastle.Security +{ +#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT) + [Serializable] +#endif + public class GeneralSecurityException + : Exception + { + public GeneralSecurityException() + : base() + { + } + + public GeneralSecurityException( + string message) + : base(message) + { + } + + public GeneralSecurityException( + string message, + Exception exception) + : base(message, exception) + { + } + } +} |