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

Post New Answer

More Shell Script Interview Questions

What is batch file programming?

0 Answers  


What does .sh file contain?

0 Answers  


write a shell program to check wheather a given string is pallindrome or not?

4 Answers  


What are the advantages of bash over all other shells?

1 Answers  


What is ms powershell?

0 Answers  






Create a bash shell script that reads a line from the user consisting of 5 words and then prints them out in reverse order. Name this script "reverse.sh"

1 Answers  


How shell works?

1 Answers  


What is the equivalent of a file shortcut that we have a window on a linux system?

0 Answers  


what is the difference between sh & bash shell?

1 Answers  


how to print the matrix form of 2-d, 3-d arrays in unix c shell scripts ?

0 Answers  


Create a bash shell script to sort and then uniq the file from the command line & store it to a new file and output the results to the screen. Name this script "sortAndUniq.sh"

5 Answers  


how to create purchase order

2 Answers  


Categories