diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/transform/resource/after-delombok/StandardExceptions.java | 39 | ||||
-rw-r--r-- | test/transform/resource/before/StandardExceptions.java | 6 |
2 files changed, 45 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/StandardExceptions.java b/test/transform/resource/after-delombok/StandardExceptions.java new file mode 100644 index 00000000..47453f50 --- /dev/null +++ b/test/transform/resource/after-delombok/StandardExceptions.java @@ -0,0 +1,39 @@ +class EmptyException extends Exception { + @java.lang.SuppressWarnings("all") + public EmptyException() { + } + + @java.lang.SuppressWarnings("all") + public EmptyException(final String message) { + super(message); + } + + @java.lang.SuppressWarnings("all") + public EmptyException(final Throwable cause) { + super(cause); + } + + @java.lang.SuppressWarnings("all") + public EmptyException(final String message, final Throwable cause) { + super(message, cause); + } +} +class NoArgsException extends Exception { + public NoArgsException() { + } + + @java.lang.SuppressWarnings("all") + public NoArgsException(final String message) { + super(message); + } + + @java.lang.SuppressWarnings("all") + public NoArgsException(final Throwable cause) { + super(cause); + } + + @java.lang.SuppressWarnings("all") + public NoArgsException(final String message, final Throwable cause) { + super(message, cause); + } +}
\ No newline at end of file diff --git a/test/transform/resource/before/StandardExceptions.java b/test/transform/resource/before/StandardExceptions.java new file mode 100644 index 00000000..7e4a3b93 --- /dev/null +++ b/test/transform/resource/before/StandardExceptions.java @@ -0,0 +1,6 @@ +@lombok.StandardException class EmptyException extends Exception { +} +@lombok.StandardException class NoArgsException extends Exception { + public NoArgsException() { + } +} |