com.github.azbh111.starter.exception.GlobalExceptionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of app-exception-handler-spring-boot-starter Show documentation
Show all versions of app-exception-handler-spring-boot-starter Show documentation
com.github.azbh111:app-exception-handler-spring-boot-starter
The newest version!
package com.github.azbh111.starter.exception;
import java.util.Map;
/**
* 提供这个bean来处理 mvc/@Async/@Scheduled 异常
*
* @author pyz
* @date 2019/11/21 10:55 上午
*/
public interface GlobalExceptionHandler {
void handle(Throwable throwable, Map context);
}