How to replace following lines,
catch (DAOException e)
{
objLogger.error(this.getClass
() + "addUpdateIssues() " + e);
throw new BOException(5122);
} catch (BOException e)
{
objLogger.error(this.getClass
() + "addUpdateIssues() " + e);
throw e;
} catch (Exception e)
{
objLogger.error(this.getClass
() + "addUpdateIssues() " + e);
throw new BOException(5122);
}
Needs to be changed in to,
catch (DAOException e)
{
AppException.handleException
(null, null, e, null, null, null, "BOException",
this.getClass() + "addUpdateIssues() ", null, null, null,
null, null, null, null, null, 5122);
} catch (BOException e)
{
AppException.handleException
(null, null, null, e, null, null, "BOException",
this.getClass() + "addUpdateIssues() ", null, null, null,
null, null, null, null, null, 0);
} catch (Exception e)
{
AppException.handleException
(null, null, null, null, null, e, "BOException",
this.getClass() + "addUpdateIssues() ", null, null, null,
null, null, null, null, null, 5122);
}
No Answer is Posted For this Question
Be the First to Post Answer
Write a shell script to looking at the log file to see if the test has passed or not
How to write an Auto scripting for deleting old files using shell script and made a cron job to run on daily basis
How do I open the shell prompt?
determine the output of the following command: echo ${new:-variable}
What are the different types of shell scripting?
Give some situations where typing error can destroy a program?
How to find duplicate record in file using shell script?
0 Answers IBM, Saama Tech, Wipro,
What are script files?
When we login into our account which files are executed?
What is difference between shell and bash scripting?
why did you apply to shell
Is bash a shell script?