blob: 655c0a766bb5775029ee4de9be1e2f8f01abb427 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
using System;
using System.Runtime.Serialization;
namespace Org.BouncyCastle.Bcpg.OpenPgp
{
/// <summary>Thrown if the key checksum is invalid.</summary>
[Serializable]
public class PgpKeyValidationException
: PgpException
{
public PgpKeyValidationException()
: base()
{
}
public PgpKeyValidationException(string message)
: base(message)
{
}
public PgpKeyValidationException(string message, Exception innerException)
: base(message, innerException)
{
}
protected PgpKeyValidationException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}
|