From db52fab26ecaaab427ecb3981452f7163a839ef0 Mon Sep 17 00:00:00 2001 From: oscgonfer Date: Wed, 27 Nov 2024 13:40:33 +0100 Subject: [PATCH] Add undefined error --- scdata/device/process/error_codes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scdata/device/process/error_codes.py b/scdata/device/process/error_codes.py index b1b67b9..8a6c873 100644 --- a/scdata/device/process/error_codes.py +++ b/scdata/device/process/error_codes.py @@ -7,6 +7,7 @@ class StatusCode(Enum): ERROR_WRONG_CALIBRATION = 'Calibration data does not match' ERROR_MISSING_CHANNEL = 'Channels not found' ERROR_WRONG_HW = 'Not supported hardware' + ERROR_UNDEFINED = 'Undefined error' WARNING_EMPTY_ID = 'Calibration ID is empty' WARNING_NULL_CHANNEL = 'Channel name is null'