mirror of https://github.com/conqp/rcon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
678 B
30 lines
678 B
"""RCON exceptions."""
|
|
|
|
__all__ = [
|
|
'ConfigReadError',
|
|
'RequestIdMismatch',
|
|
'UserAbort',
|
|
'WrongPassword'
|
|
]
|
|
|
|
|
|
class ConfigReadError(Exception):
|
|
"""Indicates an error while reading the configuration."""
|
|
|
|
|
|
class RequestIdMismatch(Exception):
|
|
"""Indicates a mismatch in request IDs."""
|
|
|
|
def __init__(self, sent: int, received: int):
|
|
"""Sets the IDs that have been sent and received."""
|
|
super().__init__()
|
|
self.sent = sent
|
|
self.received = received
|
|
|
|
|
|
class UserAbort(Exception):
|
|
"""Indicates that a required action has been aborted by the user."""
|
|
|
|
|
|
class WrongPassword(Exception):
|
|
"""Indicates a wrong password."""
|
|
|