(self, line)
| 134 | # -------------------------------------------------------------------- |
| 135 | # catch-all wrapper to guarantee continuation on unhandled exceptions |
| 136 | def onecmd(self, line): |
| 137 | try: |
| 138 | cmd.Cmd.onecmd(self, line) |
| 139 | except Exception as e: |
| 140 | print(traceback.print_exc()) |
| 141 | output().errmsg("Program Error", e) |
| 142 | |
| 143 | # ==================================================================== |
| 144 |
no test coverage detected