]> git.tdb.fi Git - libs/gl.git/blobdiff - source/except.h
Use DevIL for loading images
[libs/gl.git] / source / except.h
index 7bcf59f4336cd3bda9ffb4669a939be73972d6dd..2d8f979e7f86182b5a0effae9a768e4d06f1b607 100644 (file)
@@ -13,11 +13,11 @@ Distributed under the LGPL
 namespace Msp {
 namespace GL {
 
-class InvalidOperation: public Exception
+class IncompatibleData: public Exception
 {
 public:
-       InvalidOperation(const std::string &w_): Exception(w_) { }
-       ~InvalidOperation() throw() { }
+       IncompatibleData(const std::string &w_): Exception(w_) { }
+       ~IncompatibleData() throw() { }
 };
 
 class UnsupportedExtension: public Exception