From 63ea3db6b7ab41ff945cad1ec8af7f78b5679f66 Mon Sep 17 00:00:00 2001 From: ttzn Date: Sat, 26 Dec 2020 13:13:24 +0100 Subject: @StandardException feature working draft * annotation with javac and Eclipse handlers * single test file --- test/transform/resource/before/StandardExceptions.java | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/transform/resource/before/StandardExceptions.java (limited to 'test/transform/resource/before') 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() { + } +} -- cgit