| 100 | |
| 101 | |
| 102 | class BuildInterruptingException(Exception): |
| 103 | def __init__(self, message, instructions=None): |
| 104 | super().__init__(message, instructions) |
| 105 | self.message = message |
| 106 | self.instructions = instructions |
| 107 | |
| 108 | |
| 109 | def handle_build_exception(exception): |
no outgoing calls