@ExceptionHandler(ClientException.class) | |
public ResponseEntity<String> clientError(ClientException e) { | |
return ResponseEntity.badRequest().body(e.getMessage()); | |
} | |
@ExceptionHandler(NotFoundException.class) | |
public ResponseEntity<String> resourceNotFound(NotFoundException e) { | |
return ResponseEntity.notFound().build(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment