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

com.github.tsingjyujing.geo.exceptions.ParameterException Maven / Gradle / Ivy

package com.github.tsingjyujing.geo.exceptions;

/**
 * Throw it while input parameter is error
 *
 * @author [email protected]
 */
public class ParameterException extends RuntimeException {
    /**
     * Create exception with message only
     *
     * @param msg message
     */
    public ParameterException(String msg) {
        super(msg);
    }

    /**
     * Create exception with message and exception
     *
     * @param msg message
     * @param ex  exception info
     */
    public ParameterException(String msg, Throwable ex) {
        super(msg, ex);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy