summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/exceptions/SpriteBitmapChangedException.java
blob: 03c5f914b1c6835fe641b5dfeffb8f408f5ed21c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.mapbox.mapboxsdk.exceptions;

import android.graphics.Bitmap;

import com.mapbox.mapboxsdk.annotations.Marker;
import com.mapbox.mapboxsdk.annotations.Sprite;
import com.mapbox.mapboxsdk.views.MapView;

/**
 * <p>
 * A {@code SpriteBitmapChangedException} is thrown by {@link MapView} when a {@link Marker} is added
 * that has a {@link Sprite} with a {@link Bitmap} that has been modified.
 * </p>
 * You cannot modify a {@code Sprite} after it has been added to the map in a {@code Marker}
 *
 * @see MapView
 * @see Sprite
 * @see Marker
 */
public class SpriteBitmapChangedException extends RuntimeException {

    public SpriteBitmapChangedException() {
        super("The added Marker has a Sprite with a Bitmap that has been modified. You cannot modufy" +
                "a Sprite after it has been added in a Marker.");
    }

}