]> git.tdb.fi Git - libs/gl.git/blobdiff - source/except.h
Add Uniform* classes to store uniform data of Programs
[libs/gl.git] / source / except.h
index 4ba6f717ef30d24eb1098db22767f60aa33f8cca..7bcf59f4336cd3bda9ffb4669a939be73972d6dd 100644 (file)
@@ -27,6 +27,13 @@ public:
        ~UnsupportedExtension() throw() { }
 };
 
+class CompileError: public Exception
+{
+public:
+       CompileError(const std::string &w_): Exception(w_) { }
+       ~CompileError() throw() { }
+};
+
 } // namespace GL
 } // namespace Msp