Commit ea0b7327 authored by mchauhan's avatar mchauhan

Added ITM Exception

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204598 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 35913ebc
...@@ -311,7 +311,7 @@ public class BuildForecast extends ValidatorEJB ...@@ -311,7 +311,7 @@ public class BuildForecast extends ValidatorEJB
return errCode; return errCode;
} }
private String validateDate( String fromDate, String toDate, String userId ) private String validateDate( String fromDate, String toDate, String userId ) throws ITMException
{ {
String errCode = ""; String errCode = "";
try try
...@@ -332,6 +332,7 @@ public class BuildForecast extends ValidatorEJB ...@@ -332,6 +332,7 @@ public class BuildForecast extends ValidatorEJB
catch (ITMException e) catch (ITMException e)
{ {
e.printStackTrace(); e.printStackTrace();
throw e; //Added By Mukesh Chauhan on 02/08/19
} }
catch (ParseException e) catch (ParseException e)
{ {
......
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