00001 #ifndef _FILEEXCEPTION_H 00002 #define _FILEEXCEPTION_H 00003 00004 #include "Exception.h" 00005 00006 00007 class FileException : public Exception 00008 { 00009 public: 00010 FileException(); 00011 ~FileException(); 00012 00013 private: 00014 FileException(const FileException& ) {} // copy constructor 00015 FileException& operator=(const FileException& ) { return *this; } // assignment operator 00016 00017 }; 00018 00019 00020 00021 00022 #endif // _FILEEXCEPTION_H
|
|