在我的 Web 应用程序中创建了一个用户定义的异常扩展了 Exception.Is it Checked or unchecked exception
public class InvalidDataException extends Exception{
public InvalidDataException() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param arg0
*/
public InvalidDataException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
}