Bases: Exception
Raised when a postal provider operation fails (network, API error, etc.).
Source code in components/emailing/subcomponents/postal_letter/protected/exceptions.py
| def __init__(self, message: str) -> None:
super().__init__(message)
self.message = message
|
message
instance-attribute