I threw the Exception, and got the message. How do I complete the task?
package com.codegym.task.task15.task1517;
/*
Static modifiers and exceptions
*/
public class Solution {
public static int A = 0;
static {
throw new Exception();
}
public static int B = 5;
public static void main(String[] args) {
System.out.println(B);
}
}