| 47 | // SocketException Code |
| 48 | |
| 49 | SocketException::SocketException(const string &message, bool inclSysMsg) |
| 50 | throw() : userMessage(message) { |
| 51 | if (inclSysMsg) { |
| 52 | userMessage.append(": "); |
| 53 | userMessage.append(strerror(errno)); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | SocketException::~SocketException() throw() { |
| 58 | } |
nothing calls this directly
no outgoing calls
no test coverage detected