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

org.rx.net.http.RestClientException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.rx.net.http;

import lombok.Getter;
import org.rx.core.exception.ApplicationException;

public class RestClientException extends org.springframework.web.client.RestClientException {
    @Getter
    private final String fullLogMessage;

    public RestClientException(String fullLogMessage) {
        this(fullLogMessage, null);
    }

    public RestClientException(String fullLogMessage, Throwable ex) {
        super(ApplicationException.getMessage(ex), ex);
        this.fullLogMessage = fullLogMessage;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy