blob: 27b2ea41196b0816eb7ba7970f8ad40f031e2744 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
namespace Org.BouncyCastle.Security
{
#if !PORTABLE
[Serializable]
#endif
public class InvalidParameterException : KeyException
{
public InvalidParameterException() : base() { }
public InvalidParameterException(string message) : base(message) { }
public InvalidParameterException(string message, Exception exception) : base(message, exception) { }
}
}
|