| 36 | struct Error : public std::runtime_error |
| 37 | { |
| 38 | Error (const std::string& error) : std::runtime_error (error) {} |
| 39 | }; |
| 40 | |
| 41 | /// Attempts to read the entire contents of the given file into memory, |
nothing calls this directly
no outgoing calls
no test coverage detected