assert
java.lang.AssertionError
if
예:
assert param != null;
빠른 수정을 적용한 후:
if (param == null) throw new AssertionError();