| 2334 | LogicError::LogicError(std::string const& msg) |
| 2335 | : Exception(msg) {} |
| 2336 | void throwRuntimeError(std::string const& msg) { |
| 2337 | throw RuntimeError(msg); |
| 2338 | } |
| 2339 | void throwLogicError(std::string const& msg) { |
| 2340 | throw LogicError(msg); |
| 2341 | } |
no outgoing calls
no test coverage detected