多项选择题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.)
A.Line 6
B.Line 8
C.Line 9
D.Line 13
E.Line 14
F.The code will NOT compile as is.