Nymph Game Engine
Chaiscript based Game Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
child_does_not_exist_exception.h
Go to the documentation of this file.
1 #ifndef CHILD_DOES_NOT_EXIST_EXCEPTION_H
2 #define CHILD_DOES_NOT_EXIST_EXCEPTION_H
3 
4 #include <exception>
5 
6 namespace Exceptions {
7  class ChildDoesNotExistException : public std::exception {
8  public:
10  }
11 
12  virtual const char* what() const throw() {
13  return "Child Transform does not exist!";
14  }
15  };
16 }
17 
18 #endif
virtual const char * what() const
Definition: child_does_not_exist_exception.h:12
Definition: child_does_not_exist_exception.h:7
ChildDoesNotExistException()
Definition: child_does_not_exist_exception.h:9