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

1class BotError: 

2 """Base class for bot errors.""" 

3 

4 class InvalidSetting(Exception): 

5 """Raised when a bot is invalid.""" 

6 

7 class NoSpace(Exception): 

8 """Raised when a bot is in a fleet and therefore doesn't have a space.""" 

9 

10 class BuildNotPossible(Exception): 

11 """Raised when a bot cannot be built due to bad parameters.""" 

12 

13 class InvalidTicker(Exception): 

14 """Raised when a ticker is invalid.""" 

15 

16 

17class BotConfigError: 

18 """Base class for bot config errors.""" 

19 

20 class MissingSettingError(Exception): 

21 """Raised when a setting is missing.""" 

22 

23 class DuplicateBotConfig(Exception): 

24 """Raised if an identical BotConfig already exists in this space.""" 

25 

26 

27class ControllerError: 

28 """Base class for controller errors.""" 

29 

30 class BypassError(Exception): 

31 """Raised when a bypass isn't used.""" 

32 

33 class InvalidSetting(Exception): 

34 """Raised when a controller is invalid.""" 

35 

36 class InvalidTicker(Exception): 

37 """Raised when a ticker is invalid.""" 

38 

39 class InvalidPair(Exception): 

40 """Raised when a pair is invalid.""" 

41 

42 

43class ClusterError: 

44 """Base class for cluster errors.""" 

45 

46 class MutableBotConfig(Exception): 

47 """Raised when a BotConfig in a cluster is mutable.""" 

48 

49 class MultipleConfigs(Exception): 

50 """Raised when a cluster has multiple configs.""" 

51 

52 

53class PluginError: 

54 """Base class for plugin errors.""" 

55 

56 class InvalidPluginCategory(Exception): 

57 """Raised when a plugin category is invalid."""