* @brief Records that an error has occurred and we are overriding * the default message to go with it. *************************************************************/
| 35 | * the default message to go with it. |
| 36 | *************************************************************/ |
| 37 | void ClientErrors::SetDetailedError(sml::ErrorCode error, char const* pDetailedError) |
| 38 | { |
| 39 | m_LastError = error ; |
| 40 | m_LastErrorDetail = pDetailedError ; |
| 41 | } |
| 42 | |
| 43 | /************************************************************* |
| 44 | * @brief Returns true if an error occurred in the last call. |
no outgoing calls
no test coverage detected