| 68 | |
| 69 | |
| 70 | const char* |
| 71 | Exception::what() const throw() |
| 72 | { |
| 73 | Exception *mutableThis = CPPUNIT_CONST_CAST( Exception *, this ); |
| 74 | mutableThis->m_whatMessage = m_message.shortDescription() + "\n" + |
| 75 | m_message.details(); |
| 76 | return m_whatMessage.c_str(); |
| 77 | } |
| 78 | |
| 79 | |
| 80 | SourceLine |
no test coverage detected