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

com.mapbox.mapboxsdk.exceptions.InvalidMarkerPositionException Maven / Gradle / Ivy

There is a newer version: 9.2.1
Show newest version
package com.mapbox.mapboxsdk.exceptions;

/**
 * A InvalidMarkerPositionException is thrown when a Marker object is created with an invalid LatLng position.
 */
public class InvalidMarkerPositionException extends RuntimeException {

  public InvalidMarkerPositionException() {
    super("Adding an invalid Marker to a Map. "
      + "Missing the required position field. "
      + "Provide a non null LatLng as position to the Marker.");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy