class BadTasteException extends Exception{}
class BitterException extends BadTasteException{}
class SourException extends BadTasteException{}
abstract class Priya{
abstract void eatMe()throws BitterException;
}
class Objective71 extends Priya{
void eatMe(){//is working
//void eatMe() throws BadTasteException is working
//void eatMe() throws BitterException,SourException{} is not working for me
}
public static void main(
String[] args){
}
}
The Preceding one is my tested coding.Please marc help me further to get this.Where am i doing wrong?