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
What is echo in shell?
How to calculate the number of passed arguments?
what are special characters and explain how does text varies by the usage of single quotes,double quotes and back quotes?
what are command line arguments? what is the need of those?
How do I open the shell in cmd?
Determine the output of the following command: [ -z “” ] && echo 0 || echo 1
is there any command to find user password?
What is the difference between scripting and coding?
c program to display the information of given file similar to givan by the unix or linux command ls -l
write a shell script that counts a number of unique word contained in the file and print them in alphabetical order line by line?
What is a shell in operating system?
What is shell and shell script?