()
| 86 | * A factory to create RTMNoReplyReceivedError objects. |
| 87 | */ |
| 88 | export function noReplyReceivedError(): RTMNoReplyReceivedError { |
| 89 | return errorWithCode( |
| 90 | new Error('Message sent but no server acknowledgement was received. This may be caused by the client ' + |
| 91 | 'changing connection state rather than any issue with the specific message. Check before resending.'), |
| 92 | ErrorCode.NoReplyReceivedError, |
| 93 | ) as RTMNoReplyReceivedError; |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * A factory to create RTMSendWhileDisconnectedError objects. |
no test coverage detected