!1321 将指定的异常与消息包装为运行时异常

Merge pull request !1321 from Toint/exception-util
This commit is contained in:
Looly 2025-03-18 11:12:55 +00:00 committed by Gitee
commit c7c8bc525e
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -16,13 +16,13 @@
package org.dromara.hutool.core.exception;
import org.dromara.hutool.core.array.ArrayUtil;
import org.dromara.hutool.core.io.IORuntimeException;
import org.dromara.hutool.core.io.stream.FastByteArrayOutputStream;
import org.dromara.hutool.core.map.MapUtil;
import org.dromara.hutool.core.reflect.ConstructorUtil;
import org.dromara.hutool.core.text.StrUtil;
import org.dromara.hutool.core.array.ArrayUtil;
import org.dromara.hutool.core.text.CharUtil;
import org.dromara.hutool.core.text.StrUtil;
import java.io.IOException;
import java.io.PrintStream;
@ -92,6 +92,18 @@ public class ExceptionUtil {
return new RuntimeException(message);
}
/**
* 将指定的异常与消息包装为运行时异常
*
* @param throwable 异常
* @param message 异常消息
* @param params 参数值
* @return 运行时异常
*/
public static RuntimeException wrapRuntime(final Throwable throwable, final String message, final Object... params) {
return new RuntimeException(StrUtil.format(message, params), throwable);
}
/**
* 包装一个异常
*