summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/exceptions/InvalidMarkerPositionException.java
blob: e5a647841fcd14de8ae1d33ebc9bd4286a4f4833 (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.");
  }
}