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
How will you schedule a job that will run every month last day?(some months have 30 days,some 31 days,28,29 days)
What are the default permissions of a file when it is created?
What are the different methods available to run a shell script?
What's the difference between scripting and coding?
What is a file basename?
What are the 4 basics of OOP?
How to print some text on to the screen?
write a shell script that counts a number of unique word contained in the file and print them in alphabetical order line by line?
Write a shell program to test whether a given number is even or odd?
How can any user find out all information about a specific user like his default shell, real-life name, default directory, when and how long he has been using the system?
What is path in shell script?
Determine the output of the following command: [ -z “” ] && echo 0 || echo 1