MCPcopy Create free account
hub / github.com/OpenKinect/libfreenect2 / SocketException

Method SocketException

tools/streamer_recorder/PracticalSocket.cpp:49–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47// SocketException Code
48
49SocketException::SocketException(const string &message, bool inclSysMsg)
50 throw() : userMessage(message) {
51 if (inclSysMsg) {
52 userMessage.append(": ");
53 userMessage.append(strerror(errno));
54 }
55}
56
57SocketException::~SocketException() throw() {
58}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected