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

com.github.wz2cool.exception.JsonRuntimeException Maven / Gradle / Ivy

There is a newer version: 4.2.6
Show newest version
package com.github.wz2cool.exception;

/**
 * json 运行异常
 *
 * @author Frank
 */
public class JsonRuntimeException extends RuntimeException {

    /**
     * 构造
     *
     * @param message 错误消息
     */
    public JsonRuntimeException(String message) {
        super(message);
    }

    /**
     * 构造
     *
     * @param message 错误消息
     * @param cause   错误
     */
    public JsonRuntimeException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * 构造
     *
     * @param cause 错误
     */
    public JsonRuntimeException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy