java方法多次抛出异常

zsohkypk  于 2021-08-20  发布在  Java
关注(0)|答案(0)|浏览(202)

此问题已在此处找到答案

在java中引发多个异常(11个答案)
从一个方法中引发多个异常[已关闭](5个答案)
两天前关门了。
有没有办法在方法中抛出多个异常(称为“test”的方法)?

package com.company;
import java.io.FileNotFoundException;
import java.io.IOException;

static Exception exception = new FileNotFoundException();
static Exception exception2 = new IOException();
static Exception exception3 = new ArithmeticException();
static Exception exception4 = new NumberFormatException();

public static void test() throws Exception {
   throw exception;
   //how can I throw exception2, exception3 and exception4 all at the same time?

}

public static void main(String[] args) throws Exception{
    test();
}

}`

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题