mirror of https://github.com/conqp/rcon
7 changed files with 45 additions and 12 deletions
@ -1,7 +1,8 @@ |
|||||
"""RCON client library.""" |
"""RCON client library.""" |
||||
|
|
||||
from rcon.asyncio import rcon |
from rcon.asyncio import rcon |
||||
|
from rcon.exceptions import RequestIdMismatch, WrongPassword |
||||
from rcon.proto import Client |
from rcon.proto import Client |
||||
|
|
||||
|
|
||||
__all__ = ['Client', 'rcon'] |
__all__ = ['RequestIdMismatch', 'WrongPassword', 'Client', 'rcon'] |
||||
|
@ -0,0 +1,17 @@ |
|||||
|
"""RCON exceptions.""" |
||||
|
|
||||
|
__all__ = ['RequestIdMismatch', 'WrongPassword'] |
||||
|
|
||||
|
|
||||
|
class RequestIdMismatch(Exception): |
||||
|
"""Indicates a mismatch in request IDs.""" |
||||
|
|
||||
|
def __init__(self, sent: int, received: int): |
||||
|
"""Sets the sent and received IDs.""" |
||||
|
super().__init__() |
||||
|
self.sent = sent |
||||
|
self.received = received |
||||
|
|
||||
|
|
||||
|
class WrongPassword(Exception): |
||||
|
"""Indicates a wrong password.""" |
Loading…
Reference in new issue