Skip to content

Commit b665365

Browse files
committed
Add requireNonNull test
1 parent 97b4ddc commit b665365

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package keep.javautil;
2+
3+
import static java.util.Objects.requireNonNull;
4+
5+
6+
public class JavaUtilRequireNonNull {
7+
public static void main(String[] args) {
8+
String value = null;
9+
// Checks that the specified object reference is not {@code null} and
10+
// throws a customized {@link NullPointerException} if it is.
11+
requireNonNull(value, "value is null");
12+
}
13+
}

0 commit comments

Comments
 (0)