15 lines
384 B
Java
15 lines
384 B
Java
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");
|
|
}
|
|
}
|