Commit 4ff8c8a4 authored by mchauhan's avatar mchauhan

Added ITM Exception

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204656 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 99cc979e
...@@ -170,7 +170,7 @@ public class SaleReturnConfWF implements SaleReturnConfWFRemote, SaleReturnConfW ...@@ -170,7 +170,7 @@ public class SaleReturnConfWF implements SaleReturnConfWFRemote, SaleReturnConfW
return retString; return retString;
} }
public String updateWfStatus(String tran_id,String empCodeAprv, String loginSiteCode, String wfStatus) { public String updateWfStatus(String tran_id,String empCodeAprv, String loginSiteCode, String wfStatus) throws ITMException {
String retString = ""; String retString = "";
Connection conn = null; Connection conn = null;
ConnDriver connDriver = new ConnDriver(); ConnDriver connDriver = new ConnDriver();
...@@ -224,6 +224,7 @@ public class SaleReturnConfWF implements SaleReturnConfWFRemote, SaleReturnConfW ...@@ -224,6 +224,7 @@ public class SaleReturnConfWF implements SaleReturnConfWFRemote, SaleReturnConfW
} }
System.out.println("Exception : SaleReturnConfWF : updateWfStatus() : ==>\n" + e.getMessage()); System.out.println("Exception : SaleReturnConfWF : updateWfStatus() : ==>\n" + e.getMessage());
e.printStackTrace(); e.printStackTrace();
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