User defined exception are checked or unchecked exceptions

前端 未结 5 2074
后悔当初
后悔当初 2021-01-21 07:52

In my web application created a User defined exception extends with Exception.Is it Checked or unchecked exception

public class InvalidDataException extends Exc         


        
5条回答
  •  太阳男子
    2021-01-21 08:36

    You could have used IllegalArgumentException.

    This exception is unchecked whereas yours is checked as @duffymo & @aix commented.

提交回复
热议问题