summary refs log tree commit diff
path: root/crypto/src/security/SignatureException.cs
blob: 5ae4cbcf454e3548eab222a50b5e982e291e7a4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Org.BouncyCastle.Security
{
	public class SignatureException : GeneralSecurityException
	{
		public SignatureException() : base() { }
		public SignatureException(string message) : base(message) { }
		public SignatureException(string message, Exception exception) : base(message, exception) { }
	}
}