22 lines
334 B
C#
22 lines
334 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Security;
|
|
|
|
[Serializable]
|
|
public class SignatureException : GeneralSecurityException
|
|
{
|
|
public SignatureException()
|
|
{
|
|
}
|
|
|
|
public SignatureException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public SignatureException(string message, Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
}
|
|
}
|