001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.data.imagery.vectortile.mapbox; 003 004/** 005 * Thrown when a mapbox vector tile does not match specifications. 006 * 007 * @author Taylor Smock 008 * @since 17862 009 */ 010public class InvalidMapboxVectorTileException extends RuntimeException { 011 /** 012 * Create a default {@link InvalidMapboxVectorTileException}. 013 */ 014 public InvalidMapboxVectorTileException() { 015 super(); 016 } 017 018 /** 019 * Create a new {@link InvalidMapboxVectorTileException} exception with a message 020 * @param message The message 021 */ 022 public InvalidMapboxVectorTileException(final String message) { 023 super(message); 024 } 025}