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

com.github.mkopylec.charon.forwarding.NoExceptionErrorHandler Maven / Gradle / Ivy

package com.github.mkopylec.charon.forwarding;

import org.springframework.http.client.ClientHttpResponse;
import org.springframework.web.client.ResponseErrorHandler;

class NoExceptionErrorHandler implements ResponseErrorHandler {

    @Override
    public boolean hasError(ClientHttpResponse response) {
        return false;
    }

    @Override
    public void handleError(ClientHttpResponse response) {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy