Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

SocketException::SocketException ( const string &  message,
bool  inclSysMsg = false 
) throw ()

Construct a SocketException with a explanatory message.

Parameters:
message explanatory message
incSysMsg true if system message (from strerror(errno)) should be postfixed to the user provided message

Definition at line 46 of file PracticalSocket.cpp.

00047           : userMessage(message) {
00048   if (inclSysMsg) {
00049     userMessage.append(": ");
00050     userMessage.append(strerror(errno));
00051   }
00052 }


Generated on Thu Jan 13 09:13:08 2011 for ImpalaSrc by  doxygen 1.5.1