Commit 99cc979e authored by mchauhan's avatar mchauhan

Added ITM Exception

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204655 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0b95b989
...@@ -63,6 +63,7 @@ public class SalePersonIC extends ValidatorEJB implements SalePersonICRemote,Sal ...@@ -63,6 +63,7 @@ public class SalePersonIC extends ValidatorEJB implements SalePersonICRemote,Sal
catch(Exception e) catch(Exception e)
{ {
System.out.println("Exception : [SalesPersLEJB][itemChanged(String,String)] :==>\n"+e.getMessage()); System.out.println("Exception : [SalesPersLEJB][itemChanged(String,String)] :==>\n"+e.getMessage());
throw new ITMException(e); //Added By Mukesh Chauhan on 05/08/19
} }
return valueXmlString; return valueXmlString;
} }
...@@ -587,6 +588,7 @@ public class SalePersonIC extends ValidatorEJB implements SalePersonICRemote,Sal ...@@ -587,6 +588,7 @@ public class SalePersonIC extends ValidatorEJB implements SalePersonICRemote,Sal
catch(Exception e) catch(Exception e)
{ {
System.out.println("Exception : SalesPersLEJB : wfValData(String xmlString) : ==>\n"+e.getMessage()); System.out.println("Exception : SalesPersLEJB : wfValData(String xmlString) : ==>\n"+e.getMessage());
throw new ITMException(e); //Added By Mukesh Chauhan on 05/08/19
} }
return (errString); return (errString);
} }
......
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