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