Browse Source

Re-add error messages

pull/8/head
Richard Neumann 3 years ago
parent
commit
232b72bdc3
  1. 21
      rcon/errorhandler.py

21
rcon/errorhandler.py

@ -13,12 +13,12 @@ __all__ = ['ErrorHandler']
ERRORS = { ERRORS = {
UserAbort: 1, UserAbort: (1, None),
ConfigReadError: 2, ConfigReadError: (2, None),
ConnectionRefusedError: 3, ConnectionRefusedError: (3, 'Connection refused.'),
(TimeoutError, timeout): 4, (TimeoutError, timeout): (4, 'Connection timed out.'),
WrongPassword: 5, WrongPassword: (5, 'Wrong password.'),
RequestIdMismatch: 6 RequestIdMismatch: (6, 'Session timed out.')
} }
@ -37,9 +37,16 @@ class ErrorHandler:
def __exit__(self, _, value: Exception, __): def __exit__(self, _, value: Exception, __):
"""Checks for connection errors and exits respectively.""" """Checks for connection errors and exits respectively."""
for typ, exit_code in ERRORS.items(): if value is None:
return True
for typ, (exit_code, message) in ERRORS.items():
if isinstance(value, typ): if isinstance(value, typ):
self.exit_code = exit_code self.exit_code = exit_code
if message:
self.logger.error(message)
return True return True
return None return None

Loading…
Cancel
Save