MCPcopy Create free account
hub / github.com/FSoft-AI4Code/CodeWiki / __init__

Method __init__

codewiki/cli/utils/errors.py:30–33  ·  view source on GitHub ↗
(self, message: str, exit_code: int = EXIT_GENERAL_ERROR)

Source from the content-addressed store, hash-verified

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
36class ConfigurationError(CodeWikiError):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected