assert
java.lang.AssertionError
if
例:
assert param != null;
クイックフィックス適用後:
if (param == null) throw new AssertionError();