]> git.tdb.fi Git - libs/gl.git/blobdiff - source/glsl/glsl_error.h
Add a SPIR-V backend to the GLSL compiler
[libs/gl.git] / source / glsl / glsl_error.h
index 6654770cd90695457de4425374aea968b7f37d2d..0b4b4b02d2ddff4641f41b5c59ce2df6c1d110f7 100644 (file)
@@ -38,6 +38,13 @@ public:
        virtual ~parse_error() throw() { }
 };
 
+class internal_error: public std::logic_error
+{
+public:
+       internal_error(const std::string &w): logic_error(w) { }
+       virtual ~internal_error() throw() { }
+};
+
 struct Diagnostic
 {
        enum Severity