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

com.region.common.exception.JsonAdapterException Maven / Gradle / Ivy

package com.region.common.exception;

/**
 * Json Adapter Exception
 *
 * @author liujieyu
 * @date 2023/5/28 21:10
 * @desciption
 */
public class JsonAdapterException extends RuntimeException{

    public JsonAdapterException() {
        super();
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy