class Assert {

    static final boolean ON = true;

    static void isTrue(boolean b) {
	if (!b) throw new AssertException("Assertion failed");
    }

    static void shouldNeverReachHere( ) {
	throw new AssertException("Should never reach here");
    }

}

