mirror of https://github.com/conqp/rcon
15 changed files with 95 additions and 60 deletions
@ -1 +1,6 @@ |
|||||
"""BattlEye RCON implementation.""" |
"""BattlEye RCON implementation.""" |
||||
|
|
||||
|
from rcon.battleye.client import Client |
||||
|
|
||||
|
|
||||
|
__all__ = ['Client'] |
||||
|
@ -0,0 +1,24 @@ |
|||||
|
"""Common exceptions.""" |
||||
|
|
||||
|
__all__ = [ |
||||
|
'ConfigReadError', |
||||
|
'SessionTimeout', |
||||
|
'UserAbort', |
||||
|
'WrongPassword' |
||||
|
] |
||||
|
|
||||
|
|
||||
|
class ConfigReadError(Exception): |
||||
|
"""Indicates an error while reading the configuration.""" |
||||
|
|
||||
|
|
||||
|
class SessionTimeout(Exception): |
||||
|
"""Indicates that the session timed out.""" |
||||
|
|
||||
|
|
||||
|
class UserAbort(Exception): |
||||
|
"""Indicates that a required action has been aborted by the user.""" |
||||
|
|
||||
|
|
||||
|
class WrongPassword(Exception): |
||||
|
"""Indicates a wrong password.""" |
Loading…
Reference in new issue