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

com.github.microwww.ttp.Assert Maven / Gradle / Ivy

There is a newer version: 0.0.6-release
Show newest version
package com.github.microwww.ttp;

public class Assert {
    public static void isTrue(boolean val, String msg) {
        if (!val) {
            throw new IllegalArgumentException(msg);
        }
    }

    public static void isNotNull(Object val, String msg) {
        if (val == null) {
            throw new IllegalArgumentException(msg);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy