package cc.mrbird.febs.server.job.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 {
|
}
|