Commit 32bc896f authored by mchauhan's avatar mchauhan

Added ITM Exception

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204601 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c98ff1da
...@@ -92,7 +92,8 @@ public class BusiLogicOverridePrc extends ProcessEJB implements BusiLogicOverrid ...@@ -92,7 +92,8 @@ public class BusiLogicOverridePrc extends ProcessEJB implements BusiLogicOverrid
catch (Exception e) catch (Exception e)
{ {
System.out.println("Exception :Xform :getData(String xmlString, String xmlString2, String windowName, String xtraParams):" + e.getMessage() + ":"); System.out.println("Exception :Xform :getData(String xmlString, String xmlString2, String windowName, String xtraParams):" + e.getMessage() + ":");
rtrStr = e.getMessage(); rtrStr = e.getMessage();
throw new ITMException(e); //Added By Mukesh Chauhan on 02/08/19
} }
return rtrStr; return rtrStr;
}//END OF GETDATA(1) }//END OF GETDATA(1)
...@@ -370,6 +371,7 @@ public class BusiLogicOverridePrc extends ProcessEJB implements BusiLogicOverrid ...@@ -370,6 +371,7 @@ public class BusiLogicOverridePrc extends ProcessEJB implements BusiLogicOverrid
{ {
System.out.println("Exception : :process(String xmlString, String xmlString2, String windowName, String xtraParams):" + e.getMessage() + ":"); System.out.println("Exception : :process(String xmlString, String xmlString2, String windowName, String xtraParams):" + e.getMessage() + ":");
e.printStackTrace(); e.printStackTrace();
throw new ITMException(e); //Added By Mukesh Chauhan on 02/08/19
} }
return retStr; return retStr;
}//END OF PROCESS (1) }//END OF PROCESS (1)
......
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