From ccc30db1ae6ceab22abdf653ffaf152ed01ab45c Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Tue, 22 Feb 2022 03:29:49 +0100 Subject: [PATCH] Remove obsolete exceptions --- rcon/source/exceptions.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 rcon/source/exceptions.py diff --git a/rcon/source/exceptions.py b/rcon/source/exceptions.py deleted file mode 100644 index 2f42588..0000000 --- a/rcon/source/exceptions.py +++ /dev/null @@ -1,13 +0,0 @@ -"""RCON exceptions.""" - -__all__ = ['RequestIdMismatch'] - - -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