Repository URL to install this package:
Version:
2025.9.2 ▾
|
using System;
using Gs2.Core.Exception;
using UnityEngine.Scripting;
namespace Gs2.Unity.Gs2Realtime.Exception
{
[Preserve]
public class ConnectionException : Gs2Exception
{
public EventArgs Args;
public ConnectionException(EventArgs args) : base("ConnectionException")
{
Args = args;
}
public override bool RecommendRetry => false;
public override bool RecommendAutoRetry => false;
public override int StatusCode => 0;
}
}