diff options
author | Frederick Muriuki Muriithi | 2022-04-13 10:01:57 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-04-13 10:01:57 +0300 |
commit | 0cc8fd5fb2a026662dc2bd12f6bad9f68e5da5b0 (patch) | |
tree | 9459aa5588b3f53b99076cac87d1d60c85b2aa68 /quality_control/errors.py | |
parent | d4c2c2fccb038cdba5cc618437a0b5f67064b1b2 (diff) | |
download | gn-uploader-0cc8fd5fb2a026662dc2bd12f6bad9f68e5da5b0.tar.gz |
Update Exception name
Change the exception name to be more descriptive.
Diffstat (limited to 'quality_control/errors.py')
-rw-r--r-- | quality_control/errors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quality_control/errors.py b/quality_control/errors.py index a77039b..99f9c97 100644 --- a/quality_control/errors.py +++ b/quality_control/errors.py @@ -1,6 +1,6 @@ """Hold exceptions for QC package""" -class InvalidValue(Exception): +class InvalidCellValue(Exception): """Raised when a function encounters an invalid value""" def __init__(self, *args): |