All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mapbox.core.exceptions.ServicesException Maven / Gradle / Ivy

There is a newer version: 5.9.0-alpha.1
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy