Java - Exception Handling
Given the following code, what will be the output?
public class Test {
public static void main(String[] args) {
try {
throw new Exception("Test Exception");
} catch (Exception e) {
System.out.println("Caught: " + e.getMessage());
throw new RuntimeException("Runtime after catch");
}
}
}