com.github.microwww.ttp.Assert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of template-ppt Show documentation
Show all versions of template-ppt Show documentation
This is a template language for PPTX
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);
}
}
}