2019-10-03 18:26:44 +02:00
|
|
|
class FatalError(RuntimeError):
|
|
|
|
"""
|
2019-11-18 17:34:33 +01:00
|
|
|
Wrapper class for runtime errors that aren't caused by bugs in idf.py or the build process.
|
2019-10-03 18:26:44 +02:00
|
|
|
"""
|
2019-07-23 21:37:31 +02:00
|
|
|
def __init__(self, message, ctx=None):
|
|
|
|
super(RuntimeError, self).__init__(message)
|
|
|
|
# if context is defined, check for the cleanup tasks
|
|
|
|
if ctx is not None and "cleanup" in ctx.meta:
|
|
|
|
# cleans up the environment before failure
|
|
|
|
ctx.meta["cleanup"]()
|