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