From af16ba23cd46fa3d3b096daa8d725df2b4d78976 Mon Sep 17 00:00:00 2001 From: ttzn Date: Wed, 24 Mar 2021 23:52:08 +0100 Subject: @StandardException feature working draft * move feature under experimental * replace ProviderFor with Provides * add doc material (to be completed) * add author --- test/transform/resource/before/StandardExceptions.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test/transform/resource/before') diff --git a/test/transform/resource/before/StandardExceptions.java b/test/transform/resource/before/StandardExceptions.java index 7e4a3b93..939e1b6b 100644 --- a/test/transform/resource/before/StandardExceptions.java +++ b/test/transform/resource/before/StandardExceptions.java @@ -1,6 +1,8 @@ -@lombok.StandardException class EmptyException extends Exception { +import lombok.experimental.StandardException; + +@StandardException class EmptyException extends Exception { } -@lombok.StandardException class NoArgsException extends Exception { +@StandardException class NoArgsException extends Exception { public NoArgsException() { } } -- cgit