Return a description of the error */
| 98 | |
| 99 | /** Return a description of the error */ |
| 100 | std::string |
| 101 | GenericException::ToString() const |
| 102 | { |
| 103 | if (this->m_PimpleException) |
| 104 | { |
| 105 | std::ostringstream out; |
| 106 | this->m_PimpleException->Print(out); |
| 107 | return std::string(); |
| 108 | } |
| 109 | |
| 110 | return std::string("No pimple exception"); |
| 111 | } |
| 112 | |
| 113 | const char * |
| 114 | GenericException::what() const noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected