Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Will it be called overriding if I do not change the
parameters or return type, instead throw a different
exception in the method signature.

Answer Posted / siva

public class MyOverriding {
int add(int a, int b)throws Exception{ //TRUE
return a+b;
}
}
class SubClass extends MyOverriding {
int add(int a, int b)throws NullPointerException{
return a+b;
}
}

//BELOW CODE IS GETTING COMPILER ERROR
public class MyOverriding {
int add(int a, int b)throws NullPointerException{
return a+b;
}
}
class SubClass extends MyOverriding {
int add(int a, int b)throws Exception{
return a+b;
}
}

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can I use multiple html form elements with the same name?

1111


How can I avoid validating a form before data is entered?

1047


What value does read() return when it has reached the end of a file?

1076


How would you reatach detached objects to a session when the same object has already been loaded into the session?

1262


What is a session? Can you share a session object between different theads?

1036


Explain about local interfaces.

1117


Name three subclasses of the component class?

1158


Is the ternary operator written x : y ? Z or x ? Y : z ?

1161


Is “abc” a primitive value?

1158


What is the difference between system.out ,system.err and system.in?

1160


What is the difference between the string and stringbuffer classes?

1160


What is glasgow?

1109


What are the different types of exception?

1076


what is handle?

2421


Can you give me a simple example of using the requiredif validator rule?

1184