00001 // FileException.cpp: implementation of the FileException class. 00002 // 00004 00005 #ifdef WIN32 00006 #pragma warning(disable:4786) 00007 #endif 00008 #include "FileException.h" 00009 00011 // Construction/Destruction 00013 00015 //##ModelId=43834AC101F1 00016 FileException::FileException() throw() 00017 { 00018 00019 } 00020 00022 //##ModelId=43834AC101F2 00023 FileException::~FileException() throw() 00024 { 00025 00026 } 00027 00028 //##ModelId=43834AC101FB 00029 std::string FileException::getNameOfTheFile() 00030 { 00031 return _sNameOfTheFile; 00032 } 00033 00034 //##ModelId=43834AC10200 00035 void FileException::setNameOfTheFile(std::string sNameOfTheFile) 00036 { 00037 _sNameOfTheFile = sNameOfTheFile; 00038 }
1.4.5