Ensures that expression is true, throwing a VerifyException with no message otherwise. @throws VerifyException if expression is false
(boolean expression)
| 96 | * @throws VerifyException if {@code expression} is {@code false} |
| 97 | */ |
| 98 | public static void verify(boolean expression) { |
| 99 | if (!expression) { |
| 100 | throw new VerifyException(); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Ensures that {@code expression} is {@code true}, throwing a {@code VerifyException} with a |