Commit 65eb91ef authored by mchauhan's avatar mchauhan

Added ITM Exception

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204659 ce508802-f39f-4f6c-b175-0d175dae99d5
parent eaee5e37
...@@ -52,6 +52,7 @@ public class SalesConsolidationPrc extends ProcessEJB implements SalesConsolidat ...@@ -52,6 +52,7 @@ public class SalesConsolidationPrc extends ProcessEJB implements SalesConsolidat
} catch (Exception e) { } catch (Exception e) {
System.out.println("::::"+this.getClass().getSimpleName()+"::processDataString" + e.getMessage()); System.out.println("::::"+this.getClass().getSimpleName()+"::processDataString" + e.getMessage());
e.printStackTrace(); e.printStackTrace();
throw new ITMException(e); //Added By Mukesh Chauhan on 05/08/19
} }
return rtStr; return rtStr;
} }
...@@ -359,6 +360,7 @@ public class SalesConsolidationPrc extends ProcessEJB implements SalesConsolidat ...@@ -359,6 +360,7 @@ public class SalesConsolidationPrc extends ProcessEJB implements SalesConsolidat
System.out.println("::::Exception::::"+this.getClass().getSimpleName()+":::::" + e.getMessage()); System.out.println("::::Exception::::"+this.getClass().getSimpleName()+":::::" + e.getMessage());
e.printStackTrace(); e.printStackTrace();
errString = itmDBAccessEJB.getErrorString("", "VTDATAFAIL", "","", conn); errString = itmDBAccessEJB.getErrorString("", "VTDATAFAIL", "","", conn);
throw new ITMException(e); //Added By Mukesh Chauhan on 05/08/19
} }
finally finally
{ {
......
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