我的方法有一个 throws 的返回类型NullPointerException
。
public class Student {
public String studentOne() {
//code to get name
if(name == null)
throw new NullPointerException("Error");
else
return name;
}
}
我的问题是..我应该public String studentOne throws NullPointerException
在抛出新异常时使用吗?
PS:我知道扔不是最好的做法nullPointerException
。但它在我的项目中是必需的