22 lines
274 B
C#
22 lines
274 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Tsp;
|
|
|
|
[Serializable]
|
|
public class TspException : Exception
|
|
{
|
|
public TspException()
|
|
{
|
|
}
|
|
|
|
public TspException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public TspException(string message, Exception e)
|
|
: base(message, e)
|
|
{
|
|
}
|
|
}
|