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

Class CodeWikiError

codewiki/cli/utils/errors.py:27–33  ·  view source on GitHub ↗

Base exception for CodeWiki CLI errors.

Source from the content-addressed store, hash-verified

25
26
27class CodeWikiError(Exception):
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

no outgoing calls

Tested by

no test coverage detected