#include <FileException.h>
Inherits Exception.
Inherited by FileNotFoundException, and ParseException.
Inheritance diagram for FileException:


Public Member Functions | |
| FileException () throw () | |
| Default constructor. | |
| virtual | ~FileException () throw () |
| Destructor. | |
| virtual std::string | makeDescription ()=0 |
| virtual std::string | makeReason ()=0 |
| virtual std::string | makeOrigin (std::string sOrigin)=0 |
| virtual std::string | getNameOfTheFile () |
| virtual void | setNameOfTheFile (std::string sNameOfTheFile) |
Private Attributes | |
| std::string | _sNameOfTheFile |
Definition at line 18 of file FileException.h.
|
|
Default constructor.
Definition at line 16 of file FileException.cpp.
|
|
|
Destructor.
Definition at line 23 of file FileException.cpp.
|
|
|
Definition at line 29 of file FileException.cpp. References _sNameOfTheFile. Referenced by FileNotFoundException::makeDescription(). 00030 { 00031 return _sNameOfTheFile; 00032 }
|
|
|
Implements Exception. Implemented in FileNotFoundException, and ParseException. |
|
|
Implements Exception. Implemented in FileNotFoundException, and ParseException. |
|
|
Implements Exception. Implemented in FileNotFoundException, and ParseException. |
|
|
Definition at line 35 of file FileException.cpp. References _sNameOfTheFile. 00036 { 00037 _sNameOfTheFile = sNameOfTheFile; 00038 }
|
|
|
Definition at line 40 of file FileException.h. Referenced by getNameOfTheFile(), and setNameOfTheFile(). |
1.4.5