Commit 46e67f4d authored by mchauhan's avatar mchauhan

Added ITM Exception

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204591 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 582404cb
......@@ -374,6 +374,7 @@ public class BatchLoadIdSpecificSch implements Schedule
System.out.println(">>>>>>>>>>>>>BatchLoadIdSpecificSch In catch:");
e.printStackTrace();
System.out.println(e);
throw new ITMException(e); //Added By Mukesh Chauhan on 02/08/19
}
finally
{
......@@ -396,7 +397,7 @@ public class BatchLoadIdSpecificSch implements Schedule
return retString;
}
private String getGeneratedTranId(String batchId, Connection conn)
private String getGeneratedTranId(String batchId, Connection conn) throws ITMException
{
String sql="",tranId="";
PreparedStatement pstmt=null;
......@@ -421,6 +422,7 @@ public class BatchLoadIdSpecificSch implements Schedule
{
// TODO Auto-generated catch block
e.printStackTrace();
throw new ITMException(e); //Added By Mukesh Chauhan on 02/08/19
}
......
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