| 15 | // Socket class members |
| 16 | |
| 17 | SocketError::SocketError(const char* info, int error) : |
| 18 | std::runtime_error(std::string(info) + std::string(": ") + SocketGetErrorString(error)), |
| 19 | m_error(error) |
| 20 | { |
| 21 | } |
| 22 | |
| 23 | ///////////////////////////////////////////////////////////////////////////// |
| 24 | // Socket class members |
nothing calls this directly
no test coverage detected