summary refs log tree commit diff
path: root/crypto/src/openpgp/PgpException.cs
blob: dc0f3482b736bad7d401ffeec5a244f09dca5331 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace Org.BouncyCastle.Bcpg.OpenPgp
{
	/// <remarks>Generic exception class for PGP encoding/decoding problems.</remarks>
#if !PORTABLE
    [Serializable]
#endif
    public class PgpException
		: Exception
	{
		public PgpException() : base() {}
		public PgpException(string message) : base(message) {}
		public PgpException(string message, Exception exception) : base(message, exception) {}
	}
}