in service/src/main/java/org/apache/fineract/cn/deposit/service/internal/service/SubTxnTypesService.java [68:75]
public Boolean ledgerExists(SubTransactionType subTransactionType){
if(StringUtils.isNotBlank(subTransactionType.getLedgerAccount())){
if(this.ledgerManager.findAccount(subTransactionType.getLedgerAccount()) == null){
throw ServiceException.conflict("Ledger Account not found.", subTransactionType.getLedgerAccount());
}
}
return false;
}