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