Skip to content

Instantly share code, notes, and snippets.

@artemptushkin
Created June 6, 2022 17:12
Show Gist options
  • Save artemptushkin/75109f1799fe54ccf504c45fe4d16de8 to your computer and use it in GitHub Desktop.
Save artemptushkin/75109f1799fe54ccf504c45fe4d16de8 to your computer and use it in GitHub Desktop.
exception-to-status-map
@Bean
public Map<Class<? extends Exception>, HttpStatus> exceptionToStatusCode() {
return Map.of(
CustomExceptionInController.class, HttpStatus.BAD_REQUEST,
CustomExceptionInFilter.class, HttpStatus.BAD_REQUEST
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment