init commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user