In my web application created a User defined exception extends with Exception.Is it Checked or unchecked exception
public class InvalidDataException extends Exc
User Defined exceptions are checked exceptions because they are extended with Exception class which is super class for all the exceptions occured,where as unchecked exceptions are extended with run time Exceptions.