This commit is contained in:
CortexCore
2025-07-11 11:45:45 +08:00
parent fc189b98cc
commit ecae0f809c
76 changed files with 237471 additions and 33136 deletions

View File

@@ -1,6 +1,12 @@
namespace BITKit
{
public class NetRemoteInternalException : System.Exception
{
public NetRemoteInternalException() : base("Remote internal error") { }
public NetRemoteInternalException(string message) : base(message) { }
public NetRemoteInternalException(string message, System.Exception innerException) : base(message, innerException) { }
}
public class NetOfflineException : System.Exception
{
public NetOfflineException() : base("Client is not connected") { }
@@ -21,4 +27,6 @@ namespace BITKit
{
public NetServerOnlyException() : base("This method is only available on server") { }
}
}