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

@StandardException class EmptyException extends Exception {
}
@StandardException(access = AccessLevel.PROTECTED) class NoArgsException extends Exception {
	public NoArgsException() {
	}
}