assert
if
java.lang.AssertionError
Example:
assert param != null;
After the quick-fix is applied:
if (param == null) throw new AssertionError();