孔祥富
2021-03-13 cd26732c2a34dbc3f24b0cca8d82e8a365fcba7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package cc.mrbird.febs.server.test.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 {
}