diff options
Diffstat (limited to 'crypto/src/security/cert/CrlException.cs')
-rw-r--r-- | crypto/src/security/cert/CrlException.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/src/security/cert/CrlException.cs b/crypto/src/security/cert/CrlException.cs index 59e4f20ea..0df007b1e 100644 --- a/crypto/src/security/cert/CrlException.cs +++ b/crypto/src/security/cert/CrlException.cs @@ -2,7 +2,10 @@ using System; namespace Org.BouncyCastle.Security.Certificates { - public class CrlException : GeneralSecurityException +#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT) + [Serializable] +#endif + public class CrlException : GeneralSecurityException { public CrlException() : base() { } public CrlException(string msg) : base(msg) {} |