mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 22:23:00 +00:00
af16ba23cd
* move feature under experimental * replace ProviderFor with Provides * add doc material (to be completed) * add author
9 lines
203 B
Java
9 lines
203 B
Java
import lombok.experimental.StandardException;
|
|
|
|
@StandardException class EmptyException extends Exception {
|
|
}
|
|
@StandardException class NoArgsException extends Exception {
|
|
public NoArgsException() {
|
|
}
|
|
}
|