Files
lombok/test/transform/resource/before/StandardExceptionWithConstructor.java
T

7 lines
201 B
Java

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