sussy 2.9 changes, and finally shard unlock implementation

This commit is contained in:
rfi
2023-12-02 14:28:19 +07:00
parent 228dacb901
commit e69b8541af
11 changed files with 223 additions and 21 deletions

View File

@@ -58,4 +58,14 @@ namespace AscNet.Common
}
}
}
public class ServerCodeException : Exception
{
public int Code { get; set; }
public ServerCodeException(string message, int code)
: base(message)
{
Code = code;
}
}
}