Coverage for django_napse/utils/errors/fleets.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-03-12 13:49 +0000

1class FleetError: 

2 """Base class for fleet errors.""" 

3 

4 class FleetNotSetupError(Exception): 

5 """Raised when a fleet is not setup, but you ask I to start trading or scaling.""" 

6 

7 class InvalidOperator(Exception): 

8 """Raised when the operator is invalid.""" 

9 

10 class InvalidShares(Exception): 

11 """Raised when the sum of all shares is not 1.""" 

12 

13 class InvalidClusters(Exception): 

14 """Raised when the fleet has no clusters."""