luoyb
2021-02-05 35c2236d4a3203d93689b57588e413991d41b858
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 {
}