aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/StandardExceptions.java
blob: 939e1b6bd01564e1e2d599d9f3321363c9de5b61 (plain)
1
2
3
4
5
6
7
8
import lombok.experimental.StandardException;

@StandardException class EmptyException extends Exception {
}
@StandardException class NoArgsException extends Exception {
	public NoArgsException() {
	}
}