Chan key cannot be found in client.
| 716 | |
| 717 | @dataclass(frozen=True) |
| 718 | class ChanKeyNotFoundError(ApiError): |
| 719 | """Chan key cannot be found in client.""" |
| 720 | |
| 721 | chan_key: Optional[str] = None |
| 722 | |
| 723 | def code(self) -> int: |
| 724 | return 20000 |
| 725 | |
| 726 | |
| 727 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected