(self, msg="")
| 420 | return self.Retry(cmd, retry_on, wait_plan) |
| 421 | |
| 422 | def Die(self, msg=""): |
| 423 | if msg != "": |
| 424 | print("Error: %s" % msg) |
| 425 | print("Exiting") |
| 426 | raise Exception(msg) |
| 427 | |
| 428 | def DieNoManualMode(self, msg=""): |
| 429 | if not self._options.manual: # pragma: no cover |
no test coverage detected