mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
7 lines
201 B
Java
7 lines
201 B
Java
import lombok.experimental.StandardException;
|
|
|
|
@StandardException
|
|
public class StandardExceptionWithConstructor extends Exception {
|
|
public StandardExceptionWithConstructor(Integer x, Integer y) {
|
|
}
|
|
} |