Initial Commit
This commit is contained in:
11
iTechSharp/srcbc/security/KeyException.cs
Normal file
11
iTechSharp/srcbc/security/KeyException.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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) { }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user