There is a context with a listener.
@Override public void onStartup(ServletContext servletContext) throws ServletException { servletContext.addListener(SentryServletRequestListener.class); super.onStartup(servletContext); } and two methods. One of them is annotated with @Async
@Async public void send(Long providerId, String name, String email) { throw new RuntimeException(); } public void load(Long providerId, String name, String email) { throw new RuntimeException(); } The listener responds to non-asynchronous method exceptions. The question is: is it possible to set up and how, so that the reaction was also to exceptions from the ASYNCHRONIC methods Thank you in advance