init commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user