summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/exceptions/InvalidMarkerPositionException.java
blob: bd24379af361f617b975dd84f383e1c59a68d0e6 (plain)
1
2
3
4
5
6
7
8
9
10
package com.mapbox.mapboxsdk.exceptions;

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.");
  }
}