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