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
In my bash shell I want my prompt to be of format '$"present working directory":"hostname"> and load a file containing a list of user-defined functions as soon as I log in, how will you automate this?
How do scripts work?
Explain about debugging?
How to rename all the files in a folder having specific extension? Example: I have some files with extension (.txt) in a folder name 'Test'. I have to rename all the .txt files in a test and its subdirectories to .my extension.
How to redirect both standard output and standard error to the same location?
What does $@ mean in shell?
How do I start a shell script?
write a shell program to check wheather a given string is pallindrome or not?
is this growing field and what is average package in this?
wats the deinitions for shell utility and filter?
What is MUTEX?
What happens when you type ls?