31 lines
972 B
Java
31 lines
972 B
Java
package com.yupi.project.exception;
|
|
|
|
import com.yupi.project.common.BaseResponse;
|
|
import com.yupi.project.common.ErrorCode;
|
|
import com.yupi.project.common.ResultUtils;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.web.bind.annotation.ExceptionHandler;
|
|
import org.springframework.web.bind.annotation.RestControllerAdvice;
|
|
|
|
/**
|
|
* 全局异常处理器
|
|
*
|
|
* @author yupi
|
|
*/
|
|
@RestControllerAdvice
|
|
@Slf4j
|
|
public class GlobalExceptionHandler {
|
|
|
|
@ExceptionHandler(BusinessException.class)
|
|
public BaseResponse businessExceptionHandler(BusinessException e) {
|
|
log.error("businessException: " + e.getMessage(), e);
|
|
return ResultUtils.error(e.getCode(), e.getMessage(), e.getDescription());
|
|
}
|
|
|
|
@ExceptionHandler(RuntimeException.class)
|
|
public BaseResponse runtimeExceptionHandler(RuntimeException e) {
|
|
log.error("runtimeException", e);
|
|
return ResultUtils.error(ErrorCode.SYSTEM_ERROR, e.getMessage(), "");
|
|
}
|
|
}
|