Commit 89a77210 authored by mchauhan's avatar mchauhan

Added ITM Exception

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204664 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c7dc4222
...@@ -139,6 +139,7 @@ public class SalesRealisationProcess extends ProcessEJB implements SalesRealisa ...@@ -139,6 +139,7 @@ public class SalesRealisationProcess extends ProcessEJB implements SalesRealisa
catch(Exception e) catch(Exception e)
{ {
errString = "EXCEPTION"; errString = "EXCEPTION";
throw new ITMException(e); //Added By Mukesh Chauhan on 05/08/19
} }
//BaseLogger.debug("SalesRealisationProcessEJB :process() :Return String : [" + errString+"]"); //BaseLogger.debug("SalesRealisationProcessEJB :process() :Return String : [" + errString+"]");
...@@ -668,6 +669,7 @@ public class SalesRealisationProcess extends ProcessEJB implements SalesRealisa ...@@ -668,6 +669,7 @@ public class SalesRealisationProcess extends ProcessEJB implements SalesRealisa
}catch(Exception e) }catch(Exception e)
{ {
returnValue = "RecordNotFound"; returnValue = "RecordNotFound";
throw new ITMException(e); //Added By Mukesh Chauhan on 05/08/19
} }
return returnValue; return returnValue;
} }
......
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