----------------------------------------------------------------------------- Get error description of XML document. -----------------------------------------------------------------------------
| 309 | // Get error description of XML document. |
| 310 | // ----------------------------------------------------------------------------- |
| 311 | const char* SimXMLDocument::getErrorDesc(void) const |
| 312 | { |
| 313 | if(!m_qDocument) |
| 314 | { |
| 315 | return StringTable->insert("No document"); |
| 316 | } |
| 317 | return m_qDocument->ErrorStr(); |
| 318 | } |
| 319 | |
| 320 | DefineEngineMethod( SimXMLDocument, getErrorDesc, const char*, (),, |
| 321 | "@brief Get last error description.\n\n" |
no test coverage detected