| 32 | /////////////////////////////////////////////////////////////////////////////////////// |
| 33 | |
| 34 | CBlockingSocketException::CBlockingSocketException(LPCTSTR pchMessage) : |
| 35 | m_nError(WSAGetLastError()), |
| 36 | m_strMessage(pchMessage) |
| 37 | { |
| 38 | ASSERT(pchMessage != NULL); |
| 39 | } |
| 40 | |
| 41 | bool CBlockingSocketException::GetErrorMessage(LPTSTR lpstrError, UINT nMaxError, PUINT /*pnHelpContext = NULL*/) |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected