From 175bdb59b7695e422c5afd2d942710970933eb88 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Thu, 12 Jun 2025 15:47:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=B8=8B=E8=BD=BD=E8=BF=9C=E7=A8=8Bexce?= =?UTF-8?q?l=EF=BC=8C=E5=A2=9E=E5=8A=A0=E9=94=99=E8=AF=AF=E6=97=A5?= =?UTF-8?q?=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/io/dataease/datasource/provider/ExcelUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-backend/src/main/java/io/dataease/datasource/provider/ExcelUtils.java b/core/core-backend/src/main/java/io/dataease/datasource/provider/ExcelUtils.java index 413cfb5ac2..e8fbde1009 100644 --- a/core/core-backend/src/main/java/io/dataease/datasource/provider/ExcelUtils.java +++ b/core/core-backend/src/main/java/io/dataease/datasource/provider/ExcelUtils.java @@ -802,7 +802,7 @@ public class ExcelUtils { outputStream.close(); } catch (IOException e) { - DEException.throwException(Translator.get("i18n_file_download_failed")); + DEException.throwException(Translator.get("i18n_file_download_failed") + ", " + e.getMessage()); } return fileNames; }