Commit 2a6c6c9d authored by mmhatre's avatar mmhatre

added ITM Exception

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204609 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 95f91bf6
...@@ -2782,7 +2782,7 @@ public class AssetInstallIC extends ValidatorEJB implements AssetInstallLocal,As ...@@ -2782,7 +2782,7 @@ public class AssetInstallIC extends ValidatorEJB implements AssetInstallLocal,As
return retVal; return retVal;
} }
private String errorType(Connection conn , String errorCode) private String errorType(Connection conn , String errorCode) throws ITMException
{ {
String msgType = ""; String msgType = "";
PreparedStatement pstmt = null ; PreparedStatement pstmt = null ;
...@@ -2805,6 +2805,7 @@ public class AssetInstallIC extends ValidatorEJB implements AssetInstallLocal,As ...@@ -2805,6 +2805,7 @@ public class AssetInstallIC extends ValidatorEJB implements AssetInstallLocal,As
catch(Exception ex) catch(Exception ex)
{ {
ex.printStackTrace(); ex.printStackTrace();
throw new ITMException(ex); //added by manish mhatre on 02-aug-2019
} }
finally finally
{ {
......
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