21 lines
290 B
C#
21 lines
290 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Crmf;
|
|
|
|
public class CrmfException : Exception
|
|
{
|
|
public CrmfException()
|
|
{
|
|
}
|
|
|
|
public CrmfException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public CrmfException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|