source: josm/trunk/src/org/openstreetmap/josm/data/imagery/vectortile/mapbox/InvalidMapboxVectorTileException.java@ 17867

Last change on this file since 17867 was 17867, checked in by simon04, 3 years ago

see #17177 - fix @since xxx

File size: 693 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.imagery.vectortile.mapbox;
3
4/**
5 * Thrown when a mapbox vector tile does not match specifications.
6 *
7 * @author Taylor Smock
8 * @since 17862
9 */
10public class InvalidMapboxVectorTileException extends RuntimeException {
11 /**
12 * Create a default {@link InvalidMapboxVectorTileException}.
13 */
14 public InvalidMapboxVectorTileException() {
15 super();
16 }
17
18 /**
19 * Create a new {@link InvalidMapboxVectorTileException} exception with a message
20 * @param message The message
21 */
22 public InvalidMapboxVectorTileException(final String message) {
23 super(message);
24 }
25}
Note: See TracBrowser for help on using the repository browser.