Coverage for src/serums/errors.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.6.4, created at 2024-11-11 16:43 +0000

1"""Defines custom exceptions.""" 

2 

3 

4class DistributionEstimatorFailed(Exception): 

5 """Thrown when the distribution estimator fails.""" 

6 

7 pass 

8 

9 

10class OverboundingMethodFailed(Exception): 

11 """Thrown when the chosen overbounding method is not applicable for the given input error data.""" 

12 

13 pass