Initial Commit
This commit is contained in:
26
iTechSharp/srcbc/security/GeneralSecurityException.cs
Normal file
26
iTechSharp/srcbc/security/GeneralSecurityException.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security
|
||||
{
|
||||
public class GeneralSecurityException
|
||||
: Exception
|
||||
{
|
||||
public GeneralSecurityException()
|
||||
: base()
|
||||
{
|
||||
}
|
||||
|
||||
public GeneralSecurityException(
|
||||
string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public GeneralSecurityException(
|
||||
string message,
|
||||
Exception exception)
|
||||
: base(message, exception)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user