aboutsummaryrefslogtreecommitdiff
path: root/quality_control/errors.py
blob: 961ce8e2f36d34fb3803b8eed86f286dcc7856fb (plain)
1
2
3
4
5
6
7
8
"""Hold exceptions for QC package"""

class InvalidValue(Exception):
    """Raised when a function encounters an invalid value"""

    def __init__(self, args):
        Exception.__init__(self, args)