Notifies all observers that an error occurred. @param[in] strErrorMsg Error message which is reported to all observers. @param[in] Name of the sourcecode file where the error occurred. @param[in] Line number in th sourcecode file where the error occurred.
| 1886 | /// @param[in] Name of the sourcecode file where the error occurred. |
| 1887 | /// @param[in] Line number in th sourcecode file where the error occurred. |
| 1888 | void CFTPClient::ReportError(const tstring& strErrorMsg, const tstring& strFile, DWORD dwLineNr) const |
| 1889 | { |
| 1890 | for( TObserverSet::const_iterator it=m_setObserver.begin(); it!=m_setObserver.end(); it++ ) |
| 1891 | (*it)->OnInternalError(strErrorMsg, strFile, dwLineNr); |
| 1892 | } |
nothing calls this directly
no test coverage detected