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