- WebServer: PanTool优化异常处理

- Core: Vertx事件循环线程数调整
This commit is contained in:
qaiu
2023-07-16 02:47:39 +08:00
parent 5756fde338
commit 774a069c0e
15 changed files with 152 additions and 119 deletions

View File

@@ -0,0 +1,12 @@
package cn.qaiu.lz.common.util;
/**
* @author <a href="https://qaiu.top">QAIU</a>
* @date 2023/7/16 1:53
*/
public class PanExceptionUtils {
public static RuntimeException fillRunTimeException(String name, String dataKey, Throwable t) {
return new RuntimeException(name + ": 请求异常: key = " + dataKey, t.fillInStackTrace());
}
}