Coverage for agentos/errors/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-10 01:20 +0800
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-10 01:20 +0800
1"""Error handling: classification, formatting, and human-readable diagnosis."""
3from .handler import (
4 CATEGORY_HINTS,
5 ErrorCategory,
6 ErrorContext,
7 ErrorFormatter,
8 HumanError,
9 format_error,
10 friendly_error,
11)
13__all__ = [
14 "CATEGORY_HINTS",
15 "ErrorCategory",
16 "ErrorContext",
17 "ErrorFormatter",
18 "HumanError",
19 "format_error",
20 "friendly_error",
21]