Add NOSONAR flag to avoid issue report

This commit is contained in:
Ervin Hegedus 2025-07-23 21:40:32 +02:00
parent a319ec733f
commit 87cc544ee3
No known key found for this signature in database
GPG Key ID: 5FA5BC3F5EC41F61

View File

@ -119,7 +119,7 @@ public:
set_error(errmsg, "Number out of range");
return false;
}
catch (...) {
catch (...) { // NOSONAR
// we don't need to handle all exceptions, the engine's BISON parser
// does not allow other symbols than numbers
set_error(errmsg, "An unknown error occurred while parsed the value.");