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