What is the syntax of "nested if statement" in shell scripting?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between running a script as ./scriptname.sh and sh scriptname.sh
How will I insert a line "abcdef" at every 100th line of a file?
What are the different methods available to run a shell script?
Explain about non-login shell files?
Write a shell program to test whether a given number is even or odd?
What shell is bin sh?
What are the different shells available?
shell script for reverse the string
Is shell scripting a language?
What is egrep?
What is $1 in shell scripting?
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); }