#include <FileExceptions.h>
Inheritance diagram for CODEX_Exceptions::FileException:


Public Member Functions | |
| FileException (const string &fname, int line, const string &file) | |
| Constructor. | |
| virtual | ~FileException () |
| Virtual desctructor. | |
| void | report () const |
| Derived classes override this method to display their error messages. | |
| 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 |
| All file exceptions override this method to provide details relating to their specific errors. | |
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 28 of file FileExceptions.h.
|
||||||||||||||||
|
Constructor.
Definition at line 37 of file FileExceptions.h. |
1.4.1