12 lines
369 B
C#
12 lines
369 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Security.Certificates
|
|
{
|
|
public class CertificateParsingException : CertificateException
|
|
{
|
|
public CertificateParsingException() : base() { }
|
|
public CertificateParsingException(string message) : base(message) { }
|
|
public CertificateParsingException(string message, Exception exception) : base(message, exception) { }
|
|
}
|
|
}
|