blob: eebc5d135acef35a51db2ff9152a4775edfc4278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class UtilityClassInner {
static final @lombok.experimental.UtilityClass class UtilClass {
private @java.lang.SuppressWarnings("all") UtilClass() {
super();
throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
}
}
UtilityClassInner() {
super();
}
}
|