13 lines
373 B
C#
13 lines
373 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Security
|
|
{
|
|
[Obsolete("Never thrown")]
|
|
public class NoSuchAlgorithmException : GeneralSecurityException
|
|
{
|
|
public NoSuchAlgorithmException() : base() {}
|
|
public NoSuchAlgorithmException(string message) : base(message) {}
|
|
public NoSuchAlgorithmException(string message, Exception exception) : base(message, exception) {}
|
|
}
|
|
}
|