blob: 0df007b1ee378333090fb093f365d53c9a543389 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
namespace Org.BouncyCastle.Security.Certificates
{
#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT)
[Serializable]
#endif
public class CrlException : GeneralSecurityException
{
public CrlException() : base() { }
public CrlException(string msg) : base(msg) {}
public CrlException(string msg, Exception e) : base(msg, e) {}
}
}
|