MOOS 0.2375
|
00001 #ifndef FileNotFoundException_H 00002 #define FileNotFoundException_H 00003 00004 #include <stdexcept> 00005 #include <string> 00006 00007 class FileNotFoundException : public std::runtime_error { 00008 FileNotFoundException& operator = (const FileNotFoundException &other); 00009 00010 public: 00011 FileNotFoundException(const std::string &msg = ""); 00012 FileNotFoundException(const FileNotFoundException &other); 00013 00014 protected: 00015 00016 }; 00017 00018 #endif // FileNotFoundException_H