lr13 -> task_1 -> e1-e14
This commit is contained in:
14
lr13/task_1/e2.java
Normal file
14
lr13/task_1/e2.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package lr13.task_1;
|
||||
|
||||
public class e2 {
|
||||
public static void main(String[] args) {
|
||||
try {
|
||||
System.out.println("0");
|
||||
throw new RuntimeException("Непроверяемая ошибка");
|
||||
// System.out.println("1");
|
||||
} catch (Exception e) {
|
||||
System.out.println("2 " + e);
|
||||
}
|
||||
System.out.println("3");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user