未报告的异常异常

时间:2017-09-24 16:21:48

标签: java exception switch-statement

在我的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;

    }
}

0 个答案:

没有答案