blob: 383ae57a285681a8aa4e181dfc8ed57a30de1147 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System;
namespace Org.BouncyCastle.Bcpg.OpenPgp
{
/// <remarks>
/// Thrown if the key checksum is invalid.
/// </remarks>
#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE)
[Serializable]
#endif
public class PgpKeyValidationException
: PgpException
{
public PgpKeyValidationException() : base() {}
public PgpKeyValidationException(string message) : base(message) {}
public PgpKeyValidationException(string message, Exception exception) : base(message, exception) {}
}
}
|