aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/SneakyThrowsPlain.java
blob: df436891b83355ba4aca8439591b3594ee1f0c02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import lombok.SneakyThrows;
class SneakyThrowsPlain {
  @lombok.SneakyThrows SneakyThrowsPlain() {
    super();
    try 
      {
        System.out.println("constructor");
      }
    catch (final java.lang.Throwable $ex)
      {
        throw lombok.Lombok.sneakyThrow($ex);
      }
  }
  @lombok.SneakyThrows SneakyThrowsPlain(int x) {
    this();
    try 
      {
        System.out.println("constructor2");
      }
    catch (final java.lang.Throwable $ex)
      {
        throw lombok.Lombok.sneakyThrow($ex);
      }
  }
  public @lombok.SneakyThrows void test() {
    try 
      {
        System.out.println("test1");
      }
    catch (final java.lang.Throwable $ex)
      {
        throw lombok.Lombok.sneakyThrow($ex);
      }
  }
  public @SneakyThrows void test2() {
    try 
      {
        System.out.println("test2");
      }
    catch (final java.lang.Throwable $ex)
      {
        throw lombok.Lombok.sneakyThrow($ex);
      }
  }
}