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

com.hn.map.MapException Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.map;

/**
 * 描述:
 * 地图异常
 * @author fei
 */
public class MapException extends RuntimeException {
    public MapException() {
    }
    public MapException(String message) {
        super(message);
    }

    public MapException(String message, Throwable cause) {
        super(message, cause);
    }

    public static MapException exception(String message){
        return new MapException(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy