]> git.tdb.fi Git - libs/gl.git/blob - source/error.h
Add Id tags and copyright notices to files
[libs/gl.git] / source / error.h
1 /* $Id$
2
3 This file is part of libmspgl
4 Copyright © 2007  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GL_ERROR_H_
9 #define MSP_GL_ERROR_H_
10
11 #include <msp/core/error.h>
12
13 namespace Msp {
14 namespace GL {
15
16 class InvalidOperation: public Exception
17 {
18 public:
19         InvalidOperation(const std::string &w_): Exception(w_) { }
20         ~InvalidOperation() throw() { }
21 };
22
23 } // namespace GL
24 } // namespace Msp
25
26 #endif