]> git.tdb.fi Git - libs/gl.git/blob - source/error.h
Add vertex arrays and buffers
[libs/gl.git] / source / error.h
1 #ifndef MSP_GL_ERROR_H_
2 #define MSP_GL_ERROR_H_
3
4 #include <msp/core/error.h>
5
6 namespace Msp {
7 namespace GL {
8
9 class InvalidOperation: public Exception
10 {
11 public:
12         InvalidOperation(const std::string &w_): Exception(w_) { }
13         ~InvalidOperation() throw() { }
14 };
15
16 } // namespace GL
17 } // namespace Msp
18
19 #endif