diff options
author | ttzn <ttzn.dev@gmail.com> | 2021-03-24 23:52:08 +0100 |
---|---|---|
committer | ttzn <ttzn.dev@gmail.com> | 2021-03-24 23:52:08 +0100 |
commit | af16ba23cd46fa3d3b096daa8d725df2b4d78976 (patch) | |
tree | 70639ee886b36a8cc1840ecb34c7d839548b46ee /test/transform | |
parent | 63ea3db6b7ab41ff945cad1ec8af7f78b5679f66 (diff) | |
download | lombok-af16ba23cd46fa3d3b096daa8d725df2b4d78976.tar.gz lombok-af16ba23cd46fa3d3b096daa8d725df2b4d78976.tar.bz2 lombok-af16ba23cd46fa3d3b096daa8d725df2b4d78976.zip |
@StandardException feature working draft
* move feature under experimental
* replace ProviderFor with Provides
* add doc material (to be completed)
* add author
Diffstat (limited to 'test/transform')
-rw-r--r-- | test/transform/resource/before/StandardExceptions.java | 6 |
1 files changed, 4 insertions, 2 deletions
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() { } } |