org.maplibre.geojson.exception.GeoJsonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-sdk-geojson Show documentation
Show all versions of android-sdk-geojson Show documentation
MapLibre Android Java Utilities
package org.maplibre.geojson.exception;
/**
* A form of {@code Throwable} that indicates an issue occurred during a GeoJSON operation.
*
* @since 3.0.0
*/
public class GeoJsonException extends RuntimeException {
/**
* A form of {@code Throwable} that indicates an issue occurred during a GeoJSON operation.
*
* @param message the detail message (which is saved for later retrieval by the
* {@link #getMessage()} method)
* @since 3.0.0
*/
public GeoJsonException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy