Coverage for pesummary/utils/exceptions.py: 80.0%
10 statements
« prev ^ index » next coverage.py v7.4.4, created at 2024-12-09 22:34 +0000
« prev ^ index » next coverage.py v7.4.4, created at 2024-12-09 22:34 +0000
1# Licensed under an MIT style license -- see LICENSE.md
3__author__ = ["Charlie Hoy <charlie.hoy@ligo.org>"]
6class InputError(Exception):
7 """
8 """
9 def __init__(self, message):
10 super(InputError, self).__init__(message)
13class PlotError(Exception):
14 """
15 """
16 def __init__(self, message):
17 super(PlotError, self).__init__(message)
20class EvolveSpinError(Exception):
21 """
22 """
23 def __init__(self, message):
24 super(EvolveSpinError, self).__init__(message)