(self, message: str, exit_code: int = EXIT_GENERAL_ERROR)
| 28 | """Base exception for CodeWiki CLI errors.""" |
| 29 | |
| 30 | def __init__(self, message: str, exit_code: int = EXIT_GENERAL_ERROR): |
| 31 | self.message = message |
| 32 | self.exit_code = exit_code |
| 33 | super().__init__(self.message) |
| 34 | |
| 35 | |
| 36 | class ConfigurationError(CodeWikiError): |