Question: Language: Java Please help! Worth 5 Points Use inheritance to create a hierarchy of Exception classes - EndOfSentenceException, PunctuationException, and CommaException. EndofSentenceException is the parent
Worth 5 Points Use inheritance to create a hierarchy of Exception classes - EndOfSentenceException, PunctuationException, and CommaException. EndofSentenceException is the parent class to PunctuationException, which is the parent class to CommaException. Test your classes in a Driver class with a main method that asks the user to input a sentence: If the sentence ends in anything except a period (), exclamation point (!), or question mark (?), the program should throw a PunctuationException. If the sentence specifically ends in a comma, the program should throw a CommaException. Use a catch block to catch all EndofSentenceExceptions, causing the program to print a message and terminate. If a general PunctuationException is caught, the program should print "The sentence does not end correctly." If a CommaException is caught, the program should print "You can't end a sentence in a comma." If there are no exceptions, the program should print "The sentence ends correctly." and terminate. SAMPLE RUN : java Driver Enter a sentence: It was the best of times, it was the worst of times, You can't end a sentence in a comma
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
