refactor: Fix clang-tidy bugprone-empty-catch check (#6419)

This change fixes or suppresses instances detected by the `bugprone-empty-catch` clang-tidy check.
This commit is contained in:
Alex Kremer
2026-03-02 17:08:56 +00:00
committed by GitHub
parent 1a7f824b89
commit afc660a1b5
20 changed files with 36 additions and 33 deletions

View File

@@ -339,8 +339,8 @@ validDocumentID(AnyValue const& v)
}
catch (...)
{
return false;
}
return false;
}
} // namespace oracle