summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/exceptions/MapboxConfigurationException.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/exceptions/MapboxConfigurationException.java')
-rw-r--r--platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/exceptions/MapboxConfigurationException.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/exceptions/MapboxConfigurationException.java b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/exceptions/MapboxConfigurationException.java
deleted file mode 100644
index 431de85f05..0000000000
--- a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/exceptions/MapboxConfigurationException.java
+++ /dev/null
@@ -1,33 +0,0 @@
-package com.mapbox.mapboxsdk.exceptions;
-
-import android.content.Context;
-import android.support.annotation.NonNull;
-
-/**
- * A MapboxConfigurationException is thrown by MapboxMap when the SDK hasn't been properly initialised.
- * <p>
- * This occurs either when {@link com.mapbox.mapboxsdk.Mapbox} is not correctly initialised or the provided access token
- * through {@link com.mapbox.mapboxsdk.Mapbox#getInstance(Context, String)} isn't valid.
- * </p>
- *
- * @see com.mapbox.mapboxsdk.Mapbox#getInstance(Context, String)
- */
-public class MapboxConfigurationException extends RuntimeException {
-
- /**
- * Creates a Mapbox configuration exception thrown by MapboxMap when the SDK hasn't been properly initialised.
- */
- public MapboxConfigurationException() {
- super("\nUsing MapView requires calling Mapbox.getInstance(Context context, String accessToken) before "
- + "inflating or creating the view. The access token parameter is required when using a Mapbox service."
- + "\nPlease see https://www.mapbox.com/help/create-api-access-token/ to learn how to create one."
- + "\nMore information in this guide https://www.mapbox.com/help/first-steps-android-sdk/#access-tokens.");
- }
-
- /**
- * Creates a Mapbox configuration exception thrown by MapboxMap when the SDK hasn't been properly initialised.
- */
- public MapboxConfigurationException(@NonNull String message) {
- super(message);
- }
-}