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