If an error occurs, Error will be set to true. Also, - The ErrorId() will contain the integer identifier of the error (not generally useful) - The ErrorDesc() method will return the name of the error. (very useful) - The ErrorRow() and ErrorCol() will return the location of the error (if known) */
| 1458 | - The ErrorRow() and ErrorCol() will return the location of the error (if known) |
| 1459 | */ |
| 1460 | bool Error() const { return error; } |
| 1461 | |
| 1462 | /// Contains a textual (english) description of the error if one occurs. |
| 1463 | const char * ErrorDesc() const { return errorDesc.c_str (); } |
nothing calls this directly
no outgoing calls
no test coverage detected