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