mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
10 lines
370 B
Python
10 lines
370 B
Python
class AbriTransportError(Exception):
|
|
"""A transport-level relay failure; the request may be retried."""
|
|
|
|
|
|
class AbriResponseParseError(AbriTransportError):
|
|
"""An unparseable or unexpectedly-shaped relay response.
|
|
|
|
Transport-class (retriable): the job may or may not have been logged,
|
|
so the outcome must never be treated as success or rejection.
|
|
"""
|