All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mapbox.mapboxsdk.exceptions.ConversionException Maven / Gradle / Ivy

There is a newer version: 9.2.1
Show newest version
package com.mapbox.mapboxsdk.exceptions;

/**
 * Thrown on conversion errors
 */
public class ConversionException extends RuntimeException {

    public ConversionException() {
    }

    public ConversionException(String detailMessage) {
        super(detailMessage);
    }

    public ConversionException(String detailMessage, Throwable throwable) {
        super(detailMessage, throwable);
    }

    public ConversionException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy