All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dakusui.thincrest.metamor.Utils Maven / Gradle / Ivy

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