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

com.ijson.rest.proxy.exception.RestProxyConfigException Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package com.ijson.rest.proxy.exception;

import lombok.Data;

/**
 * Created by cuiyongxu on 26/12/2016.
 */
@Data
public class RestProxyConfigException extends RestProxyRuntimeException {

    public RestProxyConfigException(String message) {
        super(RestProxyExceptionCode.REST_PROXY_CONFIG, message);
    }

    public RestProxyConfigException(String message, Throwable cause) {
        super(RestProxyExceptionCode.REST_PROXY_CONFIG, message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy