luoyb
2021-03-04 5e00fc89317ba366e162911b02c8bc9c0e7450d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.mrbird.febs.auth.handler;
 
import cc.mrbird.febs.common.core.handler.BaseExceptionHandler;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;
import org.springframework.web.bind.annotation.RestControllerAdvice;
 
/**
 * @author MrBird
 */
@RestControllerAdvice
@Order(value = Ordered.HIGHEST_PRECEDENCE)
public class GlobalExceptionHandler extends BaseExceptionHandler {
}