summary refs log tree commit diff
path: root/Crypto/src/security/cert/CrlException.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Crypto/src/security/cert/CrlException.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Crypto/src/security/cert/CrlException.cs b/Crypto/src/security/cert/CrlException.cs
new file mode 100644

index 000000000..59e4f20ea --- /dev/null +++ b/Crypto/src/security/cert/CrlException.cs
@@ -0,0 +1,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) {} + } +}