blob: fe9807e7911a658245882dbc0fae2d7ce824ff75 (
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 || PORTABLE)
[Serializable]
#endif
public class CrlException : GeneralSecurityException
{
public CrlException() : base() { }
public CrlException(string msg) : base(msg) {}
public CrlException(string msg, Exception e) : base(msg, e) {}
}
}
|