-
Task
-
Resolution: Won't Do
-
Minor
-
None
-
2.3.0.Alpha1
-
None
Currently there are different approaches to have null checks of parameters and throw a NullPointerException or IllegalArgumentException. Most of them do not offer the parameter name which is null or causing a null lookup. Some of them offer the parameter name but are not I18N. Some offer both, but don't reuse the common solution.
There is an existing solution for these cases:
org.wildfly.common.Assert.checkNotNullParamWithNullPointerException;
org.wildfly.common.Assert.checkNotNullParam;
The approach is to have the same method signature, keep NullPointerException and/or IllegalArgumentException in the same way as now. Only the check and throw is changed with the mentioned methods.