Skip to content

Instantly share code, notes, and snippets.

@atesibrahim
Last active July 16, 2022 14:51
Show Gist options
  • Save atesibrahim/7208d84272b1acd5627ce35a691caed2 to your computer and use it in GitHub Desktop.
Save atesibrahim/7208d84272b1acd5627ce35a691caed2 to your computer and use it in GitHub Desktop.
Feign Error Decoder Configuration
public class BookClientErrorDecoder implements ErrorDecoder {
@Override
public Exception decode(String methodKey, Response response) {
return new Default().decode(methodKey, response);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment