22 lines
291 B
C#
22 lines
291 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Security.Certificates;
|
|
|
|
[Serializable]
|
|
public class CrlException : GeneralSecurityException
|
|
{
|
|
public CrlException()
|
|
{
|
|
}
|
|
|
|
public CrlException(string msg)
|
|
: base(msg)
|
|
{
|
|
}
|
|
|
|
public CrlException(string msg, Exception e)
|
|
: base(msg, e)
|
|
{
|
|
}
|
|
}
|