最佳答案
我想在 Java 中创建一个自定义异常,我该怎么做呢?
...
try{
...
String word=reader.readLine();
if(word.contains(" "))
/*create custom exception*/
}
catch(){
当我使用 throw new...
创建自定义异常时,会得到错误 unreported exception...must be caught or declared to be thrown