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