1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls
- {
- public class TlsFatalAlert
- : TlsException
- {
- private static string GetMessage(short alertDescription, string detailMessage)
- {
- string msg = Tls.AlertDescription.GetText(alertDescription);
- if (null != detailMessage)
- {
- msg += "; " + detailMessage;
- }
- return msg;
- }
- protected readonly short m_alertDescription;
- public TlsFatalAlert(short alertDescription)
- : this(alertDescription, (string)null)
- {
- }
- public TlsFatalAlert(short alertDescription, string detailMessage)
- : this(alertDescription, detailMessage, null)
- {
- }
- public TlsFatalAlert(short alertDescription, Exception alertCause)
- : this(alertDescription, null, alertCause)
- {
- }
- public TlsFatalAlert(short alertDescription, string detailMessage, Exception alertCause)
- : base(GetMessage(alertDescription, detailMessage), alertCause)
- {
- this.m_alertDescription = alertDescription;
- }
- public virtual short AlertDescription
- {
- get { return m_alertDescription; }
- }
- }
- }
- #pragma warning restore
- #endif
|