| 14 | namespace Exception{ |
| 15 | |
| 16 | struct Exception : public std::runtime_error { |
| 17 | Exception(std::string msg) : std::runtime_error(msg) {} |
| 18 | }; |
| 19 | |
| 20 | struct Parse : public Exception { |
| 21 | Parse(std::string msg, std::pair<size_t, size_t> location) : Exception(msg), location(location) {} |
no outgoing calls
no test coverage detected