summary refs log tree commit diff
path: root/crypto/src/openpgp/PgpKeyValidationException.cs
blob: df6abefe876cde8f7a696b0c40a8a7bbca3a65ce (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 !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) {}
	}
}