Java - Exception Handling
Identify the error in the following code:
public void process() {
try {
throw new Exception();
} catch (RuntimeException e) {
System.out.println("Caught");
}
}