diff --git a/src/main/java/cokr/xit/fims/crdn/service/bean/CrdnBean.java b/src/main/java/cokr/xit/fims/crdn/service/bean/CrdnBean.java index edbfe5c4..3027df28 100644 --- a/src/main/java/cokr/xit/fims/crdn/service/bean/CrdnBean.java +++ b/src/main/java/cokr/xit/fims/crdn/service/bean/CrdnBean.java @@ -87,7 +87,7 @@ public class CrdnBean extends AbstractComponent { boolean result = this.createLedger(crdn); if (!result) { - throw new RuntimeException("단속자료 수기 등록 중 단속자료 등록에 실패하였습니다."); + throw new RuntimeException("단속자료 등록 중 단속자료 등록에 실패하였습니다."); } SimpleDateFormat yyyyMMdd = new SimpleDateFormat("yyyyMMdd"); @@ -109,7 +109,7 @@ public class CrdnBean extends AbstractComponent { String retMessage = excl01Bean.createLevyExcl(excl01); if (retMessage.contains("[F]")) { - throw new RuntimeException("단속자료 수기 등록 중 부과제외 자료 등록에 실패하였습니다."); + throw new RuntimeException("단속자료 등록 중 부과제외 자료 등록에 실패하였습니다."); } taskDtlId = excl01.getLevyExclId(); @@ -126,7 +126,7 @@ public class CrdnBean extends AbstractComponent { result = crdnSttsHstryBean.create(crdnSttsHstry); if (!result) { - throw new RuntimeException("단속자료 수기 등록 중 단속상태 이력 등록에 실패하였습니다."); + throw new RuntimeException("단속자료 등록 중 단속상태 이력 등록에 실패하였습니다."); } //단속납부자이력(TB_CRDN_PAYER_HSTRY) 대장 등록 @@ -136,7 +136,7 @@ public class CrdnBean extends AbstractComponent { crdnPayerHstry.setRtpyrId(crdn.getRtpyrId()); result = crdnPayerHstryBean.create(crdnPayerHstry); if (!result) { - throw new RuntimeException("단속자료 수기 등록 중 단속납부자 이력 등록에 실패하였습니다."); + throw new RuntimeException("단속자료 등록 중 단속납부자 이력 등록에 실패하였습니다."); } } @@ -145,7 +145,7 @@ public class CrdnBean extends AbstractComponent { fileInfoList.forEach(fileInfo -> fileInfo.setInfoType(Crdn.INF_TYPE).setInfoKey(crdn.getCrdnId())); int effected = fileBean.create(fileInfoList); if(effected == 0) { - throw new RuntimeException("단속자료 수기 등록 중 파일 등록에 실패하였습니다."); + throw new RuntimeException("단속자료 등록 중 파일 등록에 실패하였습니다."); } }