luoyb
2021-02-18 3d8f7b941393760faa8fb67af9baa95d5c2c8457
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 {
}