init commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
|
||||
namespace Org.BouncyCastle.Security;
|
||||
|
||||
[Serializable]
|
||||
[Obsolete("Never thrown")]
|
||||
public class NoSuchAlgorithmException : GeneralSecurityException
|
||||
{
|
||||
public NoSuchAlgorithmException()
|
||||
{
|
||||
}
|
||||
|
||||
public NoSuchAlgorithmException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public NoSuchAlgorithmException(string message, Exception exception)
|
||||
: base(message, exception)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user