#ifndef MBGL_UTIL_EXCEPTION #define MBGL_UTIL_EXCEPTION #include namespace mbgl { namespace util { struct Exception : std::runtime_error { inline Exception(const char *msg) : std::runtime_error(msg) {} inline Exception(const std::string &msg) : std::runtime_error(msg) {} }; struct MisuseException : Exception { inline MisuseException(const char *msg) : Exception(msg) {} inline MisuseException(const std::string &msg) : Exception(msg) {} }; struct ShaderException : Exception { inline ShaderException(const char *msg) : Exception(msg) {} inline ShaderException(const std::string &msg) : Exception(msg) {} }; struct SourceLoadingException : Exception { inline SourceLoadingException(const char *msg) : Exception(msg) {} inline SourceLoadingException(const std::string &msg) : Exception(msg) {} }; } } #endif