TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
FileNotFound.h
Go to the documentation of this file.
1 
8 #ifndef G3D_FileNotFound_h
9 #define G3D_FileNotFound_h
10 
11 #include "G3D/platform.h"
12 #include <string>
13 
14 namespace G3D {
15 
20 class FileNotFound {
21 public:
22  std::string filename;
23  std::string message;
24 
26  FileNotFound(const std::string& f, const std::string& m) : filename(f), message(m) {}
27  virtual ~FileNotFound(){};
28 };
29 
30 } // G3D
31 
32 #endif
std::string filename
Definition: FileNotFound.h:22
Definition: AABox.h:25
virtual ~FileNotFound()
Definition: FileNotFound.h:27
std::string message
Definition: FileNotFound.h:23
FileNotFound()
Definition: FileNotFound.h:25
FileNotFound(const std::string &f, const std::string &m)
Definition: FileNotFound.h:26
Definition: FileNotFound.h:20