Coverage for pesummary/utils/exceptions.py: 80.0%

10 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-05-02 08:42 +0000

1# Licensed under an MIT style license -- see LICENSE.md 

2 

3__author__ = ["Charlie Hoy <charlie.hoy@ligo.org>"] 

4 

5 

6class InputError(Exception): 

7 """ 

8 """ 

9 def __init__(self, message): 

10 super(InputError, self).__init__(message) 

11 

12 

13class PlotError(Exception): 

14 """ 

15 """ 

16 def __init__(self, message): 

17 super(PlotError, self).__init__(message) 

18 

19 

20class EvolveSpinError(Exception): 

21 """ 

22 """ 

23 def __init__(self, message): 

24 super(EvolveSpinError, self).__init__(message)