在我的switch语句中接收unreported exception Exception; must be caught or declared to be thrown
。我不知道为什么我只收到这个案子,而不是其他人。我收到了案例4的错误,特别是null。
以下是代码:
private static void runProgram(int selection) throws IOException {
switch(selection) {
case 1: PrimeNumbers.main(null);
break;
case 2: ParsePhrase.main(null);
break;
case 3: Converter.main(null);
break;
case 4: DepartmentStore.main(null);
break;
}
}