Skip to content

Instantly share code, notes, and snippets.

@wkorando
Last active April 6, 2020 13:43
Embed
What would you like to do?
@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