com.mapbox.core.exceptions.ServicesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapbox-sdk-core Show documentation
Show all versions of mapbox-sdk-core Show documentation
Mapbox Services SDK (core module)
package com.mapbox.core.exceptions;
/**
* A form of {@code Throwable} that indicates conditions that a reasonable application might
* want to catch.
*
* @since 1.0.0
*/
public class ServicesException extends RuntimeException {
/**
* A form of {@code Throwable} that indicates conditions that a reasonable application might
* want to catch.
*
* @param message the detail message (which is saved for later retrieval by the
* {@link #getMessage()} method).
* @since 1.0.0
*/
public ServicesException(String message) {
super(message);
}
}