Valid 1z0-809 Dumps shared by ExamDiscuss.com for Helping Passing 1z0-809 Exam! ExamDiscuss.com now offer the newest 1z0-809 exam dumps, the ExamDiscuss.com 1z0-809 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1z0-809 dumps with Test Engine here:
Given: class UserException extends Exception { } class AgeOutOfLimitException extends UserException { } and the code fragment: class App { public void doRegister(String name, int age) throws UserException, AgeOutOfLimitException { if (name.length () < 6) { throw new UserException (); } else if (age >= 60) { throw new AgeOutOfLimitException (); } else { System.out.println(“User is registered.”); } } public static void main(String[ ] args) throws UserException { App t = new App (); t.doRegister(“Mathew”, 60); } } What is the result? User is registered.