Aborts the script.
(self)
| 809 | raise UsageError(message, self) |
| 810 | |
| 811 | def abort(self) -> t.NoReturn: |
| 812 | """Aborts the script.""" |
| 813 | raise Abort() |
| 814 | |
| 815 | def exit(self, code: int = 0) -> t.NoReturn: |
| 816 | """Exits the application with a given exit code. |