summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/location/LocationComponentNotInitializedException.java
blob: 82a73b9739a1dfc04614d04998a96e2da6de9026 (plain)
1
2
3
4
5
6
7
8
package com.mapbox.mapboxsdk.location;

final class LocationComponentNotInitializedException extends RuntimeException {
  LocationComponentNotInitializedException() {
    super("The LocationComponent has to be activated with one of the LocationComponent#activateLocationComponent"
      + " overloads before any other methods are invoked.");
  }
}