Answer Posted / ranjana
# comments
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
c program the catches the ctrl-c(SIGINT) Signal for the first time and prints a output rather and exit on pressing Ctrl-C again
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); }
What happens when you type ls?
Is bash a shell script?
Why should we use shell scripts?
What does egrep mean?
How do I open a jshell in cmd?
What is a scripting language simple definition?
How to get script name inside a script?
What is shell terminal?
How do I run a script from command prompt?
What are the disadvantages of shell scripting?
How do I open the shell prompt?
What can scripts do?
What is shell environment?