package test; import java.io.IOException; public class ThrowTest { public static void main(String[] args) throws IOException{ throw new IOException(); } }