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