Message serialize failed errors.
| 831 | |
| 832 | @dataclass(frozen=True) |
| 833 | class MsgSerializeError(ApiError): |
| 834 | """Message serialize failed errors.""" |
| 835 | |
| 836 | excption: Optional[Exception] = None |
| 837 | message: str = "" |
| 838 | |
| 839 | def code(self) -> int: |
| 840 | return 14010 |
| 841 | |
| 842 | |
| 843 | @dataclass(frozen=True) |