7 lines
179 B
Python
7 lines
179 B
Python
|
|
"""Custom exceptions raised during scenario execution."""
|
||
|
|
|
||
|
|
class ScenarioExecutionError(RuntimeError):
|
||
|
|
"""Raised when a scenario cannot be executed successfully."""
|
||
|
|
|
||
|
|
pass
|