blob: 08ca4a0766ca9148e0f4fbd69955dbaa685ee639 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
namespace Org.BouncyCastle.Security
{
public class InvalidParameterException : KeyException
{
public InvalidParameterException() : base() { }
public InvalidParameterException(string message) : base(message) { }
public InvalidParameterException(string message, Exception exception) : base(message, exception) { }
}
}
|