오류 메시지 출력 수정

main
이범준 10 months ago
parent 7e8ce9f2cb
commit a7e822ee37

@ -156,7 +156,7 @@ public class PDFPrintUtil extends PrintUtil {
contentStream.endText(); contentStream.endText();
} catch (IOException e) { } catch (IOException e) {
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."); throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."+e);
} }
} }
@ -237,7 +237,8 @@ public class PDFPrintUtil extends PrintUtil {
contentStream.drawImage(image, xyAbsolute[0], xyAbsolute[1]-size[1], size[0], size[1]); contentStream.drawImage(image, xyAbsolute[0], xyAbsolute[1]-size[1], size[0], size[1]);
} }
} catch (IOException e) { } catch (IOException e) {
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."); e.printStackTrace();
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."+e);
} }
} }
@ -411,7 +412,8 @@ public class PDFPrintUtil extends PrintUtil {
contentStream.stroke(); contentStream.stroke();
contentStream.setLineDashPattern(new float[]{}, 0); contentStream.setLineDashPattern(new float[]{}, 0);
} catch (IOException e) { } catch (IOException e) {
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."); e.printStackTrace();
throw new RuntimeException("PDF 파일 출력 중 오류가 발생하였습니다."+e);
} }
} }
@ -506,7 +508,8 @@ public class PDFPrintUtil extends PrintUtil {
); );
return fontMap; return fontMap;
} catch (IOException e) { } catch (IOException e) {
throw new RuntimeException("글꼴 로드 오류"); e.printStackTrace();
throw new RuntimeException("글꼴 로드 오류"+e);
} }
} }

@ -560,7 +560,7 @@ public class IntegrationSearchServiceBean extends AbstractServiceBean implements
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
throw new RuntimeException(); throw new RuntimeException("출력오류."+e);
} }
return result; return result;

Loading…
Cancel
Save