Question 9 in the Sample
Test asks 'which method declarations would be suitable to the compiler?'. These methods are throwing an exception. BadTasteException is abstract, and extends Exception. BitterException and SourException both extend BadTasteException.
Here is choice a.
a) public void eatMeth() throws BadTasteException
The answer indicates that choice 'a' is one of the correct answers. But if BadTasteException is abstract it can't be instantiated in the 'throw new' statement. Is it possible to throw an abstract exception? Thanks!