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

com.mageddo.tobby.internal.utils.Validator Maven / Gradle / Ivy

There is a newer version: 2.1.6-alpha
Show newest version
package com.mageddo.tobby.internal.utils;

public class Validator {

  private Validator() {
  }

  public static void isTrue(boolean expression, String msg, Object... args) {
    if (!expression) {
      throw new IllegalArgumentException(String.format(msg, args));
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy