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

org.voovan.tools.exception.ParseException Maven / Gradle / Ivy

package org.voovan.tools.exception;

/**
 * 解析通用异常
 *
 * @author: helyho
 * voovan Framework.
 * WebSite: https://github.com/helyho/voovan
 * Licence: Apache v2 License
 */
public class ParseException extends RuntimeException {
    public ParseException() {
        super();
    }


    public ParseException(String message) {
        super(message);
    }


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


    public ParseException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy