assert
java.lang.AssertionError
if
示例:
assert param != null;
在应用快速修复后:
if (param == null) throw new AssertionError();