Newer
Older
BlackoutClient / Assets / Best HTTP / Source / SecureProtocol / pkcs / PkcsException.cs
@Mark Mark on 30 Jan 2020 594 bytes Added Best HTTP 2 plugin
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;

namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Pkcs
{
    /// <summary>
    /// Base exception for PKCS related issues.
    /// </summary>
    public class PkcsException
        : Exception
    {
        public PkcsException(string message)
            : base(message)
        {
        }

        public PkcsException(string message, Exception underlying)
            : base(message, underlying)
        {
        }
    }
}
#pragma warning restore
#endif