22 lines
351 B
C#
22 lines
351 B
C#
using System;
|
|
|
|
namespace Org.BouncyCastle.Security.Certificates;
|
|
|
|
[Serializable]
|
|
public class CertificateEncodingException : CertificateException
|
|
{
|
|
public CertificateEncodingException()
|
|
{
|
|
}
|
|
|
|
public CertificateEncodingException(string msg)
|
|
: base(msg)
|
|
{
|
|
}
|
|
|
|
public CertificateEncodingException(string msg, Exception e)
|
|
: base(msg, e)
|
|
{
|
|
}
|
|
}
|