aboutsummaryrefslogtreecommitdiff
path: root/test/delombok/resource/after/SneakyThrowsMultiple.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/delombok/resource/after/SneakyThrowsMultiple.java')
-rw-r--r--test/delombok/resource/after/SneakyThrowsMultiple.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/test/delombok/resource/after/SneakyThrowsMultiple.java b/test/delombok/resource/after/SneakyThrowsMultiple.java
deleted file mode 100644
index bab13990..00000000
--- a/test/delombok/resource/after/SneakyThrowsMultiple.java
+++ /dev/null
@@ -1,45 +0,0 @@
-import java.awt.AWTException;
-import java.io.IOException;
-import java.util.Random;
-class SneakyThrowsMultiple {
- public void test() {
- try {
- try {
- System.out.println("test1");
- throw new IOException();
- } catch (IOException $ex) {
- throw lombok.Lombok.sneakyThrow($ex);
- }
- } catch (Throwable $ex) {
- throw lombok.Lombok.sneakyThrow($ex);
- }
- }
- public void test2() {
- try {
- try {
- System.out.println("test2");
- if (new Random().nextBoolean()) {
- throw new IOException();
- } else {
- throw new AWTException("WHAT");
- }
- } catch (AWTException $ex) {
- throw lombok.Lombok.sneakyThrow($ex);
- }
- } catch (IOException $ex) {
- throw lombok.Lombok.sneakyThrow($ex);
- }
- }
- public void test3() {
- try {
- try {
- System.out.println("test3");
- throw new IOException();
- } catch (IOException $ex) {
- throw lombok.Lombok.sneakyThrow($ex);
- }
- } catch (Throwable $ex) {
- throw lombok.Lombok.sneakyThrow($ex);
- }
- }
-} \ No newline at end of file