0 / 60 seg.

What is demonstrated by this code snippet?

try {
    // Risky operations
} catch (Exception e) {
    System.err.println("General error");
} finally {
    System.out.println("Always executes");
}