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

net.wirelabs.jmaps.map.exceptions.CriticalMapException Maven / Gradle / Ivy

The newest version!
package net.wirelabs.jmaps.map.exceptions;

/**
 * Exception for all situations where map cannot be parsed or displayed
 */
public class CriticalMapException extends RuntimeException {

    public CriticalMapException(String s, Exception e) {
        super(s,e);
    }
    public CriticalMapException(String s) {
        super(s);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy