Created ImplUtils containing developmental functions

This commit is contained in:
Collin Smith 2021-08-20 17:51:23 -07:00
parent a8403abd19
commit 82917f747c

View File

@ -0,0 +1,17 @@
package com.riiablo.util;
public final class ImplUtils {
private ImplUtils() {}
public static <T> T todo() {
throw new RuntimeException("not yet implemented");
}
public static <T> T unimplemented() {
throw new RuntimeException("not implemented");
}
public static <T> T unsupported(String message) {
throw new UnsupportedOperationException(message);
}
}