| 281 | { |
| 282 | public: |
| 283 | OSError(const std::string& err_msg, int err_code): |
| 284 | std::runtime_error( err_msg + ": " + std::strerror(err_code) ) |
| 285 | {} |
| 286 | }; |
| 287 | |
| 288 | //-------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected