Coverage for django_napse/utils/errors/bots.py: 100%
18 statements
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
« prev ^ index » next coverage.py v7.4.3, created at 2024-03-12 13:49 +0000
1class BotError:
2 """Base class for bot errors."""
4 class InvalidSetting(Exception):
5 """Raised when a bot is invalid."""
7 class NoSpace(Exception):
8 """Raised when a bot is in a fleet and therefore doesn't have a space."""
10 class BuildNotPossible(Exception):
11 """Raised when a bot cannot be built due to bad parameters."""
13 class InvalidTicker(Exception):
14 """Raised when a ticker is invalid."""
17class BotConfigError:
18 """Base class for bot config errors."""
20 class MissingSettingError(Exception):
21 """Raised when a setting is missing."""
23 class DuplicateBotConfig(Exception):
24 """Raised if an identical BotConfig already exists in this space."""
27class ControllerError:
28 """Base class for controller errors."""
30 class BypassError(Exception):
31 """Raised when a bypass isn't used."""
33 class InvalidSetting(Exception):
34 """Raised when a controller is invalid."""
36 class InvalidTicker(Exception):
37 """Raised when a ticker is invalid."""
39 class InvalidPair(Exception):
40 """Raised when a pair is invalid."""
43class ClusterError:
44 """Base class for cluster errors."""
46 class MutableBotConfig(Exception):
47 """Raised when a BotConfig in a cluster is mutable."""
49 class MultipleConfigs(Exception):
50 """Raised when a cluster has multiple configs."""
53class PluginError:
54 """Base class for plugin errors."""
56 class InvalidPluginCategory(Exception):
57 """Raised when a plugin category is invalid."""