mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-13 18:19:18 +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) {
|
|
}
|
|
} |