Which is best institute for testing tool?
No Answer is Posted For this Question
Be the First to Post Answer
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 is the use of "$#" in shell scripting?
What are the different variables present in linux shell?
Write a script to print the first 10 elements of fibonacci series.
What does it mean by #!/Bin/sh or #!/Bin/bash at the beginning of every script?
How do I debug a shell script?
Which shell is the best?
Hi, I want to practise Unix korn shell scripting which i learnt 2 yr bfr. plz suggest software i can use to practise.
Can you write a script to portray how set –x works?
give me some website where i can get unix and testing meterials
How will I insert a line "abcdef" at every 100th line of a file?
What are the Different types of shells?