Files
pylibmeshctrl/src/meshctrl/exceptions.py

17 lines
299 B
Python
Raw Normal View History

2024-11-01 12:00:16 -07:00
class MeshCtrlError(Exception):
"""
Base class for Meshctrl errors
"""
2024-11-01 12:00:16 -07:00
pass
class ServerError(MeshCtrlError):
"""
Represents an error thrown from the server
"""
2024-11-01 12:00:16 -07:00
pass
class SocketError(MeshCtrlError):
"""
Represents an error in the websocket
"""
pass