From b7b18dc3258048a1fba25230e4f8ab5b4cf3e0cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=96=87?= <3466561528@qq.com> Date: Fri, 12 Jun 2026 10:58:49 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4parse=E5=87=BD=E6=95=B0?= =?UTF-8?q?=E8=A7=A3=E6=9E=90=E5=A4=B1=E8=B4=A5=E7=9A=84=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E5=A4=84=E7=90=86=E3=80=82=E7=8E=B0=E5=9C=A8=E4=B8=8D=E4=BC=9A?= =?UTF-8?q?=E7=9B=B4=E6=8E=A5=E6=8A=9B=E5=87=BA=E5=BC=82=E5=B8=B8=E4=BA=86?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../tool/parsepqdif/service/impl/ParsePqdifServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/parse-pqdif/src/main/java/com/njcn/gather/tool/parsepqdif/service/impl/ParsePqdifServiceImpl.java b/tools/parse-pqdif/src/main/java/com/njcn/gather/tool/parsepqdif/service/impl/ParsePqdifServiceImpl.java index 3bd0d3d..102aed3 100644 --- a/tools/parse-pqdif/src/main/java/com/njcn/gather/tool/parsepqdif/service/impl/ParsePqdifServiceImpl.java +++ b/tools/parse-pqdif/src/main/java/com/njcn/gather/tool/parsepqdif/service/impl/ParsePqdifServiceImpl.java @@ -34,7 +34,7 @@ public class ParsePqdifServiceImpl implements ParsePqdifService { try { tempFile = createTempPqdifFile(pqdifFile); return pqdifNativeReader.read(tempFile, pqdifFile.getOriginalFilename()); - } catch (Throwable e) { + } catch (Exception e) { log.error("PQDIF解析失败,fileName={}", pqdifFile.getOriginalFilename(), e); return failed(pqdifFile.getOriginalFilename(), e.getMessage()); } finally {