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