Skip to content

Commit 1ee1529

Browse files
AMP-167 - addressed review comments.
1 parent cf697b9 commit 1ee1529

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/uk/gov/hmcts/cp/subscription/controllers/GlobalExceptionHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public ResponseEntity<String> handleUnknownException(final Exception exception)
4040
}
4141

4242
@ExceptionHandler(FeignException.class)
43-
public ResponseEntity<String> handleFeignException(FeignException ex) {
43+
public ResponseEntity<String> handleFeignException(final FeignException ex) {
4444
log.error("FeignException from downstream service", ex);
4545
HttpStatus status = HttpStatus.resolve(ex.status());
4646
if (status == null) {

0 commit comments

Comments
 (0)