| 15 | { |
| 16 | public: |
| 17 | Exception( std::string const & text |
| 18 | , std::string const & file |
| 19 | , int line ) |
| 20 | : text{ file + ":" + std::to_string( line ) + " - " + text } |
| 21 | { |
| 22 | } |
| 23 | |
| 24 | char const * what()const noexcept override |
| 25 | { |
nothing calls this directly
no outgoing calls
no test coverage detected