国庆快乐 ^ ^ #59

This commit is contained in:
QAIU
2024-09-30 17:38:36 +08:00
parent 6c3195dea4
commit 209e9c2866
9 changed files with 259 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
package cn.qaiu.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());
}
}