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

com.tosan.client.http.sample.server.api.config.CustomServerClientConfigurationException Maven / Gradle / Ivy

package com.tosan.client.http.sample.server.api.config;

import com.tosan.client.http.starter.impl.feign.exception.FeignConfigurationException;

/**
 * @author Ali Alimohammadi
 * @since 4/18/2021
 */
public class CustomServerClientConfigurationException extends FeignConfigurationException {
    private static final long serialVersionUID = -2443361687977670214L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy