(final T object)
| 26 | } |
| 27 | |
| 28 | public static <T> T notNull(final T object) { |
| 29 | return notNull(object, "The validated object is null"); |
| 30 | } |
| 31 | |
| 32 | public static <T> T notNull(final T object, final String message, final Object... values) { |
| 33 | return notNull(object, NullPointerException::new, message, values); |
no test coverage detected