19 lines
618 B
C#
19 lines
618 B
C#
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
|
#pragma warning disable
|
|
using System;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Security.Certificates
|
|
{
|
|
#if !(NETCF_1_0 || NETCF_2_0 || SILVERLIGHT || PORTABLE || NETFX_CORE)
|
|
[Serializable]
|
|
#endif
|
|
public class CertificateExpiredException : CertificateException
|
|
{
|
|
public CertificateExpiredException() : base() { }
|
|
public CertificateExpiredException(string message) : base(message) { }
|
|
public CertificateExpiredException(string message, Exception exception) : base(message, exception) { }
|
|
}
|
|
}
|
|
#pragma warning restore
|
|
#endif
|