Commit e8482abb authored by mmhatre's avatar mmhatre

added ITM Exception

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204605 ce508802-f39f-4f6c-b175-0d175dae99d5
parent ecf7054a
...@@ -60,7 +60,8 @@ public class AccountsIC extends ValidatorEJB implements AccountsICRemote, Accoun ...@@ -60,7 +60,8 @@ public class AccountsIC extends ValidatorEJB implements AccountsICRemote, Accoun
catch (Exception e) catch (Exception e)
{ {
System.out.println(":::" + getClass().getSimpleName() + "::" + e.getMessage()); System.out.println(":::" + getClass().getSimpleName() + "::" + e.getMessage());
e.getMessage(); //e.getMessage(); //commented by manish mhatre on 02-aug-2019
throw new ITMException(e); //added by manish mhatre on 02-aug-2019
} }
return retString; return retString;
} }
...@@ -899,7 +900,8 @@ public class AccountsIC extends ValidatorEJB implements AccountsICRemote, Accoun ...@@ -899,7 +900,8 @@ public class AccountsIC extends ValidatorEJB implements AccountsICRemote, Accoun
catch (Exception e) catch (Exception e)
{ {
System.out.println(":::" + getClass().getSimpleName() + "::" + e.getMessage()); System.out.println(":::" + getClass().getSimpleName() + "::" + e.getMessage());
e.getMessage(); //e.getMessage(); //commented by manish mhatre on 02-aug-2019
throw new ITMException(e); //added by manish mhatre on 02-aug-2019
} }
return retString; return retString;
} }
......
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