Files
2026-06-12 14:02:15 +08:00

7 lines
179 B
Python

"""Custom exceptions raised during scenario execution."""
class ScenarioExecutionError(RuntimeError):
"""Raised when a scenario cannot be executed successfully."""
pass