erkeays.unchecked.0.4.2.source-code.TestFlowErrors Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unchecked Show documentation
Show all versions of unchecked Show documentation
Say goodbye to checked exceptions forever
The newest version!
public class TestFlowErrors {
public static void main(String [] args) {
try {
throw new Exception();
} catch (Exception e) {
} catch (Exception e) {} // exception already caught
}
}