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