多选题
Given:
3. public static void main(String[] args) {
4. try {
5. throw new Error();
6. }
7. catch (Error e) {
8. try {throw new RuntimeException(); }
9. catch (Throwable t) { }
10. }
11. System.out.println("phew");
12. }
Which are true? (Choose all that apply.)