summary refs log tree commit diff
path: root/crypto/src/security/NoSuchAlgorithmException.cs
blob: 25c0ab04f09ad869d6243d616aa2f7b6cad87498 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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) {}
	}
}