4 changed files with 38 additions and 9 deletions
@ -0,0 +1,28 @@
|
||||
package com.logpm.report.config; |
||||
|
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.tenant.exception.TenantDataSourceException; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.api.ResultCode; |
||||
import org.springframework.http.HttpStatus; |
||||
import org.springframework.http.ResponseEntity; |
||||
import org.springframework.web.bind.annotation.ControllerAdvice; |
||||
import org.springframework.web.bind.annotation.ExceptionHandler; |
||||
import org.springframework.web.bind.annotation.ResponseStatus; |
||||
|
||||
/** |
||||
* @Author: zqb |
||||
* @Date: 2024/11/13 |
||||
*/ |
||||
@ControllerAdvice |
||||
@Slf4j |
||||
public class ReportExceptionHandler { |
||||
|
||||
@ExceptionHandler(TenantDataSourceException.class) |
||||
@ResponseStatus(HttpStatus.BAD_REQUEST) |
||||
public ResponseEntity<Object> handleCustomException(TenantDataSourceException e) { |
||||
String errorMessage = e.getMessage(); |
||||
return new ResponseEntity<>(R.fail(ResultCode.FAILURE.getCode(),errorMessage), HttpStatus.BAD_REQUEST); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue