We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97b4ddc commit b665365Copy full SHA for b665365
src/main/java/keep/javautil/JavaUtilRequireNonNull.java
@@ -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