Consumer initialization failed errors.
| 511 | |
| 512 | @dataclass(frozen=True) |
| 513 | class ConsumerInitError(ApiError): |
| 514 | """Consumer initialization failed errors.""" |
| 515 | |
| 516 | channel_id: Optional[str] = None |
| 517 | instance_name: Optional[str] = None |
| 518 | |
| 519 | def code(self) -> int: |
| 520 | return 12004 |
| 521 | |
| 522 | |
| 523 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected