Coverage for src / lexigram / contracts / webhook / exceptions.py: 0%
5 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-08-15 18:57 +0800
« prev ^ index » next coverage.py v7.13.5, created at 2026-08-15 18:57 +0800
1"""Webhook domain exception hierarchy."""
3from __future__ import annotations
5from lexigram.contracts.exceptions.domain import DomainError
8class WebhookError(DomainError):
9 """Base exception for webhook domain operations."""
11 _code = "LEX_ERR_WEBHOOK_001"
14__all__ = ["WebhookError"]