MCPcopy Create free account
hub / github.com/VitoHowe/glm-coding / __init__

Method __init__

app/errors.py:47–53  ·  view source on GitHub ↗
(self, message: str, *, details: dict[str, Any] | None = None)

Source from the content-addressed store, hash-verified

45 """Raised when user input is incomplete or invalid."""
46
47 def __init__(self, message: str, *, details: dict[str, Any] | None = None) -> None:
48 super().__init__(
49 message,
50 status_code=400,
51 code="bad_request",
52 details=details,
53 )
54
55
56class NotFoundError(GlmDeskError):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected