X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fexcept.h;fp=source%2Fexcept.h;h=7bcf59f4336cd3bda9ffb4669a939be73972d6dd;hb=85e83ace47e5a9a8ae7263886255dd81afc69278;hp=4ba6f717ef30d24eb1098db22767f60aa33f8cca;hpb=224c40efa231c85b61da772a6f58c067d7b579b3;p=libs%2Fgl.git diff --git a/source/except.h b/source/except.h index 4ba6f717..7bcf59f4 100644 --- a/source/except.h +++ b/source/except.h @@ -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