多选题
Given:
1. import java.io.*;
2. public class Edgy {
3. public static void main(String[] args){
4. try {
5. wow();
6. // throw new IOException();
7. } finally {
8. // throw new Error();
9. // throw new IOException();
10. }
11. }
12. static void wow() {
13. // throw new IllegalArgumentException();
14. // throw new IOException();
15. } }
And given that IOException is a direct subclass of java.lang.Exception, and that llegalArgumentException is a runtime exception, which of the following, if uncommented independently, will compile? (Choose all that apply.)