! \brief Get error string associated with exception * * \return A memory pointer to the error message string. */
| 302 | * \return A memory pointer to the error message string. |
| 303 | */ |
| 304 | virtual const char * what() const throw () |
| 305 | { |
| 306 | if (errStr_ == NULL) { |
| 307 | return "empty"; |
| 308 | } |
| 309 | else { |
| 310 | return errStr_; |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | /*! \brief Get error code associated with exception |
| 315 | * |
nothing calls this directly
no outgoing calls
no test coverage detected