feat: 自定义异常消息支持占位符

This commit is contained in:
Ray.Hao
2024-06-21 23:51:38 +08:00
parent f26cda6174
commit 227fe38315

View File

@@ -2,11 +2,12 @@ package com.youlai.system.common.exception;
import com.youlai.system.common.result.IResultCode;
import lombok.Getter;
import org.slf4j.helpers.MessageFormatter;
/**
* 自定义业务异常
*
* @author haoxr
* @author Ray Hao
* @since 2022/7/31
*/
@Getter
@@ -19,17 +20,19 @@ public class BusinessException extends RuntimeException {
this.resultCode = errorCode;
}
public BusinessException(String message){
super(message);
}
public BusinessException(String message, Throwable cause){
public BusinessException(String message, Throwable cause) {
super(message, cause);
}
public BusinessException(Throwable cause){
public BusinessException(Throwable cause) {
super(cause);
}
public BusinessException(String message, Object... args) {
super(formatMessage(message, args));
}
private static String formatMessage(String message, Object... args) {
return MessageFormatter.arrayFormat(message, args).getMessage();
}
}