Claude-skill-registry exceptions
Guide for creating exceptions using fastapi-problem that are automatically converted to RFC 9457 Problem Details responses.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/exceptions" ~/.claude/skills/majiayu000-claude-skill-registry-exceptions && rm -rf "$T"
manifest:
skills/data/exceptions/SKILL.mdsource content
Exception Creation
Use this skill when creating exceptions that are automatically converted to RFC 9457 Problem Details responses.
For comprehensive coding guidelines, see
AGENTS.md in the repository root.
Base Exception Classes
The project uses
fastapi-problem base classes from app/exceptions/base.py:
from fastapi_problem.error import ( BadRequestProblem, ConflictProblem, ForbiddenProblem, NotFoundProblem, ServerProblem, UnauthorisedProblem, UnprocessableProblem, )
| Base Class | Status Code | Use Case |
|---|---|---|
| 404 | Resource not found |
| 409 | Duplicate resource, state conflict |
| 400 | Invalid request (cursor, parameter) |
| 403 | Access denied |
| 401 | Authentication required |
| 422 | Validation failure |
| 500 | Internal server error |
Creating Resource-Specific Exceptions
Create new exceptions in
app/exceptions/:
# app/exceptions/resource.py """ Resource-related exceptions. """ from fastapi_problem.error import ConflictProblem, NotFoundProblem class ResourceNotFoundError(NotFoundProblem): """ Raised when a resource cannot be found. """ title = "Resource not found" class ResourceAlreadyExistsError(ConflictProblem): """ Raised when attempting to create a duplicate resource. """ title = "Resource already exists"
Exporting Exceptions
Export new exceptions from
app/exceptions/__init__.py:
from app.exceptions.base import ( BadRequestProblem, ConflictProblem, ForbiddenProblem, NotFoundProblem, ServerProblem, UnauthorisedProblem, UnprocessableProblem, ) from app.exceptions.resource import ResourceAlreadyExistsError, ResourceNotFoundError __all__ = [ "BadRequestProblem", "ConflictProblem", "ForbiddenProblem", "NotFoundProblem", "ResourceAlreadyExistsError", "ResourceNotFoundError", "ServerProblem", "UnauthorisedProblem", "UnprocessableProblem", ]
Using Exceptions
Import from the package root:
# In routers and services from app.exceptions import ResourceNotFoundError, ResourceAlreadyExistsError
Raise exceptions in services:
async def get_resource(self, user_id: str) -> Resource: snapshot = await doc_ref.get() if not snapshot.exists: raise ResourceNotFoundError("Resource not found") return Resource(**snapshot.to_dict())
Exception Handling in Routers
Re-raise exceptions to let handlers convert them:
@router.get("/") async def get_resource( current_user: CurrentUser, service: ResourceServiceDep, ) -> Resource: try: return await service.get_resource(current_user.uid) except (HTTPException, ResourceNotFoundError): raise except Exception: logger.exception("Error getting resource", extra={"user_id": current_user.uid}) raise HTTPException( status_code=status.HTTP_500_INTERNAL_SERVER_ERROR, detail="Failed to retrieve resource" ) from None
RFC 9457 Problem Details Response
Exceptions are automatically converted to Problem Details format:
{ "type": "about:blank", "title": "Resource not found", "status": 404, "detail": "Resource not found" }
The exception handler in
app/core/exception_handler.py:
- Uses
singletonfastapi-problem
with pre/post hookseh - Adds
to all error responsesX-Request-ID - Adds
field and$schema
header withLink
to error responsesrel="describedBy" - Supports CBOR error responses via
CBORProblemPostHook - Strips extras from 5xx errors in production via
StripExtrasPostHook
Custom Detail Message
Pass a custom message when raising:
raise ResourceNotFoundError(detail="Resource with ID 'abc123' was not found")
Naming Convention
Use descriptive names with
Error suffix:
{Resource}NotFoundError{Resource}AlreadyExistsError{Resource}InvalidError{Resource}ExpiredError
Testing
Test exception behavior:
def test_returns_404_when_not_found( client: TestClient, with_fake_user: None, mock_resource_service: AsyncMock, ) -> None: mock_resource_service.get_resource.side_effect = ResourceNotFoundError() response = client.get("/v1/resource") assert response.status_code == 404 body = response.json() assert body["title"] == "Resource not found" assert body["status"] == 404