#include <nSocket.h>
Public Member Functions | |
PermanentError () | |
default constructor | |
PermanentError (const tString &details) | |
constructor giving details on error | |
~PermanentError () | |
destructor | |
Private Member Functions | |
virtual tString | DoGetName () const |
returns the name of the exception | |
virtual tString | DoGetDescription () const |
returns a detailed description | |
Private Attributes | |
tString | description_ |
Definition at line 128 of file nSocket.h.
nSocket::PermanentError::PermanentError | ( | void | ) |
default constructor
Definition at line 2716 of file nSocket.cpp.
02719 : description_( "No details available" )
nSocket::PermanentError::PermanentError | ( | const tString & | details | ) |
constructor giving details on error
details |
Definition at line 2731 of file nSocket.cpp.
02734 : description_( details )
nSocket::PermanentError::~PermanentError | ( | void | ) |
tString nSocket::PermanentError::DoGetName | ( | void | ) | const [private, virtual] |
returns the name of the exception
Implements tException.
Definition at line 2759 of file nSocket.cpp.
tString nSocket::PermanentError::DoGetDescription | ( | void | ) | const [private, virtual] |
returns a detailed description
Reimplemented from tException.
Definition at line 2774 of file nSocket.cpp.
References description_.
tString nSocket::PermanentError::description_ [private] |