mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
Pre Merge pull request !1319 from Toint/v6-dev
This commit is contained in:
commit
4c388d63e9
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
* 包装一个异常
|
||||
*
|
||||
|
@ -25,6 +25,8 @@ import org.dromara.hutool.http.client.ApacheHttpClientConfig;
|
||||
import org.dromara.hutool.http.client.ClientConfig;
|
||||
import org.dromara.hutool.log.LogUtil;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* Http客户端引擎工厂类
|
||||
*
|
||||
@ -82,6 +84,20 @@ public class ClientEngineFactory {
|
||||
throw new HttpException("No such engine named: " + engineName);
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建自定义引擎
|
||||
*
|
||||
* @param engineType 引擎类型
|
||||
* @return 引擎
|
||||
* @throws HttpException 无对应名称的引擎
|
||||
*/
|
||||
public static ClientEngine createEngine(Class<? extends ClientEngine> engineType) throws HttpException {
|
||||
if (engineType == null) {
|
||||
throw new HttpException("No such engine name");
|
||||
}
|
||||
return ClientEngineFactory.createEngine(engineType.getName());
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据用户引入的HTTP客户端引擎jar,自动创建对应的HTTP客户端引擎对象<br>
|
||||
* 推荐创建的引擎单例使用,此方法每次调用会返回新的引擎
|
||||
|
Loading…
Reference in New Issue
Block a user