Files
lombok/test/transform/resource/before/StandardExceptionWithConstructor.java
T
2024-05-24 00:58:35 +02:00

7 lines
201 B
Java

import lombok.experimental.StandardException;
@StandardException
public class StandardExceptionWithConstructor extends Exception {
public StandardExceptionWithConstructor(Integer x, Integer y) {
}
}