| 47 | } |
| 48 | |
| 49 | const char* Exception::what() const noexcept { |
| 50 | if (mMsgUtf8.isNull()) { |
| 51 | mMsgUtf8 = mMsg.toUtf8(); |
| 52 | } |
| 53 | return mMsgUtf8.constData(); |
| 54 | } |
| 55 | |
| 56 | /******************************************************************************* |
| 57 | * Class LogicError |
no test coverage detected