blob: b0a417bb82007944b1fdde4e777ce5dd694b30dc [file] [log] [blame]
public class Catch
{
public static int main(String[] args) {
int i = 0;
try {
i += 10;
}
catch (Exception e) {
System.err.println("caught exception: " + e);
i += 20;
}
return i;
}
}