glcxx: A Modern C++ Interface to OpenGL Object Management
Error.hpp
Go to the documentation of this file.
1 
6 #ifndef GLCXX_ERROR_HPP
7 #define GLCXX_ERROR_HPP
8 
9 #include <stdexcept>
10 
11 namespace glcxx
12 {
19  class Error : public std::runtime_error
20  {
21  public:
27  Error(const std::string & msg) : std::runtime_error(msg)
28  {
29  };
30  };
31 };
32 
33 #endif
Definition: Array.cpp:4
Error(const std::string &msg)
Construct an Error instance.
Definition: Error.hpp:27
Exception class for glcxx errors.
Definition: Error.hpp:19