summaryrefslogtreecommitdiff
path: root/include/mbgl/util/exception.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/exception.hpp')
-rw-r--r--include/mbgl/util/exception.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/mbgl/util/exception.hpp b/include/mbgl/util/exception.hpp
index 06098840a8..b2214b36b8 100644
--- a/include/mbgl/util/exception.hpp
+++ b/include/mbgl/util/exception.hpp
@@ -16,11 +16,6 @@ struct SpriteImageException : Exception {
inline SpriteImageException(const std::string &msg) : Exception(msg) {}
};
-struct GlyphRangeLoadingException : Exception {
- inline GlyphRangeLoadingException(const char *msg) : Exception(msg) {}
- inline GlyphRangeLoadingException(const std::string &msg) : Exception(msg) {}
-};
-
struct MisuseException : Exception {
inline MisuseException(const char *msg) : Exception(msg) {}
inline MisuseException(const std::string &msg) : Exception(msg) {}
@@ -31,21 +26,6 @@ struct ShaderException : Exception {
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) {}
-};
-
-struct SpriteLoadingException : Exception {
- inline SpriteLoadingException(const char *msg) : Exception(msg) {}
- inline SpriteLoadingException(const std::string &msg) : Exception(msg) {}
-};
-
-struct TileLoadingException : Exception {
- inline TileLoadingException(const char *msg) : Exception(msg) {}
- inline TileLoadingException(const std::string &msg) : Exception(msg) {}
-};
-
} // namespace util
} // namespace mbgl