Skip to content

Instantly share code, notes, and snippets.

@geraldoyudo
Created September 10, 2018 19:52
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 geraldoyudo/8328d3e99073a7012aee6a2a1b3fc3d0 to your computer and use it in GitHub Desktop.
Save geraldoyudo/8328d3e99073a7012aee6a2a1b3fc3d0 to your computer and use it in GitHub Desktop.
java-tutorials/api-error-handling/hello-controller-advice
@RestControllerAdvice
public class HelloControllerAdvice {
@ExceptionHandler(Exception.class)
public ApiError handleGeneralException(){
return ApiError.builder()
.error("General Error (from controller-advice)")
.errorCode(500)
.build();
}
@ExceptionHandler(SyntaxException.class)
public ApiError handleSyntaxException(){
return ApiError.builder()
.error("Syntax Error (from controller-advice)")
.errorCode(991)
.build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment