Rename NVBenchRuntimeException to NVBenchRuntimeError

Added exception to __init__.pyi
This commit is contained in:
Oleksandr Pavlyk
2025-07-25 16:58:02 -05:00
parent b97e27cbf2
commit b6821b7624
2 changed files with 6 additions and 1 deletions

View File

@@ -261,3 +261,8 @@ def run_all_benchmarks(argv: Sequence[str]) -> None:
Sequence of CLI arguments controlling NVBench. Usually, it is `sys.argv`.
"""
...
class NVBenchRuntimeError(RuntimeError):
"""An exception raised if running benchmarks encounters an error"""
...