1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

framework/exception: add ExecutionError

Add an exception class to represent an error from within the execution
framework (rather than a plugin).
This commit is contained in:
Sergei Trofimov 2018-02-28 10:18:07 +00:00 committed by Marc Bonnici
parent 05b726db09
commit 1b9ac9236a

View File

@ -33,6 +33,11 @@ class ValidationError(WAError):
pass
class ExecutionError(WAError):
"""Error encountered by the execution framework."""
pass
class WorkloadError(WAError):
"""General Workload error."""
pass