org.zodiac.sentinel.base.client.callback.BlockErrorHandler Maven / Gradle / Ivy
The newest version!
package org.zodiac.sentinel.base.client.callback;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
public interface BlockErrorHandler {
void handleError(HttpStatus status, MediaType contentType, Object body, Throwable throwable);
}