]> git.tdb.fi Git - libs/gl.git/blobdiff - source/error.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / error.h
diff --git a/source/error.h b/source/error.h
deleted file mode 100644 (file)
index 6179903..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
-#ifndef MSP_GL_ERROR_H_
-#define MSP_GL_ERROR_H_
-
-#include <msp/core/error.h>
-
-namespace Msp {
-namespace GL {
-
-class InvalidOperation: public Exception
-{
-public:
-       InvalidOperation(const std::string &w_): Exception(w_) { }
-       ~InvalidOperation() throw() { }
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif