InputMismatchException

InputMismatchException

    try {
        if (x.length == Styles.size()) {

        }
        else{
             throws InputMismatchException ;
        }
    } finally {
        OutputFileScanner.close();
    }


我在上面包含代码的方法中遇到编译错误,是否可以在else块中抛出InputMismatchException?

最佳答案

您需要使用new关键字:

throw new InputMismatchException();

关于java - Java捕获异常,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13576502/

10-09 07:31