Files
libraries-tivadar-besthttp/Runtime/3rdParty/BouncyCastle/bcpg/UnsupportedPacketVersionException.cs
2026-07-03 05:02:26 +03:00

35 lines
750 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.Bcpg
{
[Serializable]
public class UnsupportedPacketVersionException
: Exception
{
public UnsupportedPacketVersionException()
: base()
{
}
public UnsupportedPacketVersionException(string message)
: base(message)
{
}
public UnsupportedPacketVersionException(string message, Exception innerException)
: base(message, innerException)
{
}
protected UnsupportedPacketVersionException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}
}
#pragma warning restore
#endif