| 41 | } |
| 42 | |
| 43 | void SawyerStreamReader::read(void* data, size_t dataLen) |
| 44 | { |
| 45 | try |
| 46 | { |
| 47 | _stream.read(data, dataLen); |
| 48 | } |
| 49 | catch (...) |
| 50 | { |
| 51 | throw Exception::RuntimeError(exceptionReadError); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | bool SawyerStreamReader::validateChecksum() |
| 56 | { |
no outgoing calls
no test coverage detected