service/src/main/java/org/apache/fineract/cn/deposit/service/rest/ProductInstanceRestController.java [106:117]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      } catch (Exception ex) {
        logger.info(ex.getClass().getCanonicalName());
        System.out.println(ex.getClass().getCanonicalName());
        logger.info(ex.getClass().getName());
        System.out.println(ex.getClass().getName());
        logger.info(ex.getMessage());
        System.out.println(ex.getMessage());
        e=ex;
      }
    } while (retryCount < txnMaxRetry);
    //throw the last exception
    throw e;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



service/src/main/java/org/apache/fineract/cn/deposit/service/rest/TransactionRestController.java [89:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            } catch (Exception ex) {
                logger.info(ex.getClass().getCanonicalName());
                System.out.println(ex.getClass().getCanonicalName());
                logger.info(ex.getClass().getName());
                System.out.println(ex.getClass().getName());
                logger.info(ex.getMessage());
                System.out.println(ex.getMessage());
                e=ex;
            }
        } while (retryCount < txnMaxRetry);
        //throw the last exception
        throw e;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



