313233343536
public static void myAssert(boolean bool) {if (!bool) throw new AssertException();} public static void myAssert(boolean bool, String message) {if (!bool) throw new AssertException(message);}