What is demonstrated by this code snippet?
try {
// Risky operations
} catch (Exception e) {
System.err.println("General error");
} finally {
System.out.println("Always executes");
}
What is demonstrated by this code snippet?
try {
// Risky operations
} catch (Exception e) {
System.err.println("General error");
} finally {
System.out.println("Always executes");
}