Commit 47da0449 authored by Quxl's avatar Quxl

x

parent a8f33c76
...@@ -648,14 +648,14 @@ public class ExportServiceImpl implements ExportService { ...@@ -648,14 +648,14 @@ public class ExportServiceImpl implements ExportService {
wb.write(os); wb.write(os);
fis.close(); fis.close();
} catch (Exception e) { } catch (Exception e) {
throw new XRException("会刊导出失败"); throw new XRException("会刊导出失败", e);
}finally{ }finally{
try { try {
if(fis != null) { if(fis != null) {
fis.close(); fis.close();
} }
} catch (IOException e) { } catch (IOException e) {
throw new XRException("模板读取失败"); throw new XRException("模板读取失败", e);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment