
com.github.dakusui.thincrest.metamor.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thincrest-pcond Show documentation
Show all versions of thincrest-pcond Show documentation
Yet another assertion library powered by "pcond"
The newest version!
package com.github.dakusui.thincrest.metamor;
public enum Utils {
;
public static void requireState(boolean c, String message) {
if (!c)
throw new IllegalStateException(message);
}
public static void requireArgument(boolean c, String message) {
if (!c)
throw new IllegalArgumentException(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy