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

com.github.sommeri.sourcemap.Preconditions Maven / Gradle / Ivy

package com.github.sommeri.sourcemap;

public class Preconditions {

  public static void checkState(boolean value) {
    if (!value) {
      throw new IllegalStateException();
    }
  }

  public static void checkState(boolean value, String message) {
    if (!value) {
      throw new IllegalStateException(message);
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy