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

namespace Org.BouncyCastle.Security.Certificates
{
	public class CrlException : GeneralSecurityException
	{
		public CrlException() : base() { }
		public CrlException(string msg) : base(msg) {}
		public CrlException(string msg, Exception e) : base(msg, e) {}
	}
}