Java - Custom Exceptions
What will be the output of the following Java code?
public class Test {
public static void main(String[] args) {
int x = 5;
int y = 10;
int sum = x + y;
System.out.println("Sum is: " + sum);
}
}