#include <Socket.h>
Inheritance diagram for CODEX_Quorum::QSESocketBaseSocketClosed:


Public Member Functions | |
| QSESocketBaseSocketClosed (const string &fname, int line, int socket, unsigned long error) | |
| Specifies closed socket that was accessed. | |
| int | socket () const |
| File descriptor for the socket on which the error occurred. | |
| unsigned long | error () const |
| Error code from sys/errno.h. | |
| void | report () const |
| Displays error message for this exception on cerr. | |
| const string & | fname () const |
| Name of file in which the exception occurred. | |
| int | line () const |
| Line number in file where the exception was thrown. | |
Protected Member Functions | |
| void | errMsg () const |
| All socket exceptions override this method to provide details relating to their specific errors. | |
| void | derivedMsg () const |
| Derived classes override this method to display their specific error messages. | |
Protected Attributes | |
| unsigned long | m_error |
| Error code returned by the offending routine. | |
| string | m_fname |
| The name of the file in which the exception occurred. | |
| int | m_line |
| The line number in the file where the exception was thrown. | |
Definition at line 532 of file Socket.h.
1.4.1