Files
lombok/test/transform/resource/before/StandardExceptions.java
T
ttzn af16ba23cd @StandardException feature working draft
* move feature under experimental
* replace ProviderFor with Provides
* add doc material (to be completed)
* add author
2021-03-24 23:52:08 +01:00

9 lines
203 B
Java

import lombok.experimental.StandardException;
@StandardException class EmptyException extends Exception {
}
@StandardException class NoArgsException extends Exception {
public NoArgsException() {
}
}