Files
2026-07-03 05:02:26 +03:00

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