Exemplo n.º 1
0
        public static string GetErrorMsg(SBErrorCode code)
        {
            switch (code)
            {
            case SBErrorCode.Parse:
                return("Parsing error");

            case SBErrorCode.DataOperation:
                return("Data operation error");

            case SBErrorCode.NoServersFound:
                return("Can not find online server");

            case SBErrorCode.UnSupportedGame:
                return("The game is not supported by RetroSpy");

            default:
                return("Unknown error");
            }
        }
 public SBCommandHandlerBase(ISession client, byte[] recv) : base(client)
 {
     _errorCode = SBErrorCode.NoError;
     _recv      = recv;
 }