]> git.tdb.fi Git - libs/gl.git/blobdiff - source/error.h
Remove the deprecated ProgramBuilder class
[libs/gl.git] / source / error.h
index bb714506ccf908ced9aea4f057fa78dbfdd4370e..8af3ec6b4e3fb13394c943ecbc89280e3dfe9332 100644 (file)
@@ -41,6 +41,13 @@ public:
        virtual ~compile_error() throw() { }
 };
 
+class incomplete_uniform_block: public std::runtime_error
+{
+public:
+       incomplete_uniform_block(const std::string &w): std::runtime_error(w) { }
+       virtual ~incomplete_uniform_block() throw() { }
+};
+
 } // namespace GL
 } // namespace Msp