Files
webmanager-mvp/webui/backend/app/api/errors.py
T
2026-03-11 09:39:41 +01:00

12 lines
204 B
Python

from __future__ import annotations
from dataclasses import dataclass
@dataclass
class AppError(Exception):
code: str
message: str
status_code: int
details: dict[str, str] | None = None