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

1"""Webhook domain exception hierarchy.""" 

2 

3from __future__ import annotations 

4 

5from lexigram.contracts.exceptions.domain import DomainError 

6 

7 

8class WebhookError(DomainError): 

9 """Base exception for webhook domain operations.""" 

10 

11 _code = "LEX_ERR_WEBHOOK_001" 

12 

13 

14__all__ = ["WebhookError"]