blob: d120c5f77adbe37b5a5e3b66f5b9d5a230ee2d8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
namespace Org.BouncyCastle.Security
{
[Obsolete("Never thrown")]
#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT)
[Serializable]
#endif
public class NoSuchAlgorithmException : GeneralSecurityException
{
public NoSuchAlgorithmException() : base() {}
public NoSuchAlgorithmException(string message) : base(message) {}
public NoSuchAlgorithmException(string message, Exception exception) : base(message, exception) {}
}
}
|