Files
ichni_Official/Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/cmp/CmpException.cs
2026-06-15 18:18:16 +08:00

35 lines
752 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using System.Runtime.Serialization;
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Cmp
{
[Serializable]
public class CmpException
: Exception
{
public CmpException()
: base()
{
}
public CmpException(string message)
: base(message)
{
}
public CmpException(string message, Exception innerException)
: base(message, innerException)
{
}
protected CmpException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}
#pragma warning restore
#endif