30 lines
879 B
Java
30 lines
879 B
Java
package cn.honour.exception;
|
|
|
|
import cn.honour.common.BaseResponse;
|
|
import com.gearwenxin.common.ErrorCode;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.web.bind.annotation.ExceptionHandler;
|
|
import org.springframework.web.bind.annotation.RestControllerAdvice;
|
|
|
|
/**
|
|
* 全局异常处理器
|
|
* @author qiaoxiaoxu
|
|
*/
|
|
|
|
@RestControllerAdvice
|
|
@Slf4j
|
|
public class GlobalExceptionHandler {
|
|
|
|
@ExceptionHandler(BusinessException.class)
|
|
public BaseResponse<?> businessExceptionHandler(BusinessException e) {
|
|
log.error("BusinessException", e);
|
|
return ResultUtils.error(e.getCode(), e.getMessage());
|
|
}
|
|
|
|
@ExceptionHandler(RuntimeException.class)
|
|
public BaseResponse<?> runtimeExceptionHandler(RuntimeException e) {
|
|
log.error("RuntimeException", e);
|
|
return ResultUtils.error(ErrorCode.SYSTEM_ERROR, "系统错误");
|
|
}
|
|
}
|