From c7c4600c80d9edf8e2346edc521be9293e28bb55 Mon Sep 17 00:00:00 2001 From: Toint <599818663@qq.com> Date: Sun, 16 Mar 2025 02:12:25 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86=E6=8C=87=E5=AE=9A=E7=9A=84=E5=BC=82?= =?UTF-8?q?=E5=B8=B8=E4=B8=8E=E6=B6=88=E6=81=AF=E5=8C=85=E8=A3=85=E4=B8=BA?= =?UTF-8?q?=E8=BF=90=E8=A1=8C=E6=97=B6=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../hutool/core/exception/ExceptionUtil.java | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/hutool-core/src/main/java/org/dromara/hutool/core/exception/ExceptionUtil.java b/hutool-core/src/main/java/org/dromara/hutool/core/exception/ExceptionUtil.java index d6bc4250d..7b8d52977 100644 --- a/hutool-core/src/main/java/org/dromara/hutool/core/exception/ExceptionUtil.java +++ b/hutool-core/src/main/java/org/dromara/hutool/core/exception/ExceptionUtil.java @@ -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); + } + /** * 包装一个异常 *