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

pl.amazingcode.timeflow.Preconditions Maven / Gradle / Ivy

package pl.amazingcode.timeflow;

final class Preconditions {

  private Preconditions() {}

  static void checkArgument(boolean expression, String errorMessage) {
    if (!expression) {
      throw new IllegalArgumentException(errorMessage);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy