mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 14:14:22 +01:00
10 lines
245 B
Python
10 lines
245 B
Python
from common.exceptions import BasicException
|
|
|
|
|
|
class TowerConnectionError(BasicException):
|
|
"""Raised when the tower responds with an error"""
|
|
|
|
|
|
class TowerResponseError(BasicException):
|
|
"""Raised when the tower responds with an error"""
|