Skip to content

Instantly share code, notes, and snippets.

@wkorando
Last active April 6, 2020 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wkorando/6092c5284bc1a2692025a36b2eb8ea07 to your computer and use it in GitHub Desktop.
Save wkorando/6092c5284bc1a2692025a36b2eb8ea07 to your computer and use it in GitHub Desktop.
@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