Check if this is an exception response
(messageType: number)
| 232 | |
| 233 | /** Check if this is an exception response */ |
| 234 | isException(messageType: number): boolean { |
| 235 | return messageType === MESSAGE_EXCEPTION |
| 236 | } |
| 237 | |
| 238 | /** Read a Thrift application exception */ |
| 239 | readException(): { message: string; type: number } { |
no outgoing calls
no test coverage detected