blob: c8819b710af1a35cb67e38a7c5ad940d41829c41 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
namespace Org.BouncyCastle.Security.Certificates
{
#if !PORTABLE
[Serializable]
#endif
public class CertificateException : GeneralSecurityException
{
public CertificateException() : base() { }
public CertificateException(string message) : base(message) { }
public CertificateException(string message, Exception exception) : base(message, exception) { }
}
}
|