#include <Exceptions.h>
Inheritance diagram for CODEX_APSS::ExceptionBase:


Public Member Functions | |
| ExceptionBase (const string &fname, int line) | |
| Create an ExceptionBase. | |
| virtual | ~ExceptionBase () |
| Virtual destructor. | |
| 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 | |
| virtual void | derivedMsg () const =0 |
| Derived classes override this method to display their specific error messages. | |
Protected Attributes | |
| 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 35 of file CODEX_APSS/Exceptions.h.
|
||||||||||||
|
Create an ExceptionBase.
Reimplemented from CODEX_Exceptions::ExceptionBase. Definition at line 43 of file CODEX_APSS/Exceptions.h. |
1.4.1