In my web application created a User defined exception extends with Exception.Is it Checked or unchecked exception
public class InvalidDataException extends Exc
You could have used IllegalArgumentException.
This exception is unchecked whereas yours is checked as @duffymo & @aix commented.