From 9fb4ab106f17290faf65146d4b005885507c1900 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Sat, 19 May 2018 14:24:37 +0000 Subject: [Travis] Rebuilding documentation --- exception_8h_source.html | 127 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 exception_8h_source.html (limited to 'exception_8h_source.html') diff --git a/exception_8h_source.html b/exception_8h_source.html new file mode 100644 index 00000000..eeb051e3 --- /dev/null +++ b/exception_8h_source.html @@ -0,0 +1,127 @@ + + + + + + +yage/core/exception.h Source File + + + + + + + + + + +
+
+ + + + + + + +
+
Yet Another Game Engine
+
+
+ + + + + + +
+ All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
+ + +
+ +
+ + +
+
+
+
exception.h
+
+
+Go to the documentation of this file.
1 #ifndef YAGE_CORE_EXCEPTION_H
+
2 #define YAGE_CORE_EXCEPTION_H
+
3 
+
4 #include <stdexcept>
+
5 #include <sstream>
+
6 
+
7 namespace yage
+
8 {
+
9 
+
10 class FileLoadException : public std::runtime_error
+
11 {
+
12 public:
+
13  FileLoadException(std::string err);
+
14 
+
15  virtual const char *what() const throw();
+
16 
+
17 private:
+
18  std::string err_msg;
+
19 };
+
20 
+
21 } // namespace yage
+
22 
+
23 #endif
+
Definition: exception.h:10
+
FileLoadException(std::string err)
Definition: exception.cpp:6
+
virtual const char * what() const
Definition: exception.cpp:15
+
+ + + + -- cgit