[lang] NullArgumentException usage

2011-07-07 Thread Gary Gregory
Hi All: I do like using NullArgumentException, but I find writing this over and over tedious: if (arg == null) { thrown new NullArgumentException(argName); } something(arg); How about this instead: NullArgumentException.check(arg, argName); something(arg); or:

Re: [lang] NullArgumentException usage

2011-07-07 Thread Matt Benson
On Thu, Jul 7, 2011 at 11:56 AM, Gary Gregory garydgreg...@gmail.com wrote: Hi All: I do like using NullArgumentException, but I find writing this over and over tedious: if (arg == null) {  thrown new NullArgumentException(argName); } something(arg); How about this instead:

Re: [lang] NullArgumentException usage

2011-07-07 Thread Adrian Crum
I use an Assert class (similar to commons Validate): Assert.notNull(argName, arg); http://ci.apache.org/projects/ofbiz/site/javadocs/org/ofbiz/base/util/Assert.html The difference is it throws IllegalArgumentException. -Adrian On 7/7/2011 5:56 PM, Gary Gregory wrote: Hi All: I do like

Re: [lang] NullArgumentException usage

2011-07-07 Thread Gary Gregory
On Thu, Jul 7, 2011 at 1:11 PM, Matt Benson gudnabr...@gmail.com wrote: On Thu, Jul 7, 2011 at 11:56 AM, Gary Gregory garydgreg...@gmail.com wrote: Hi All: I do like using NullArgumentException, but I find writing this over and over tedious: if (arg == null) { thrown new

Re: [lang] NullArgumentException usage

2011-07-07 Thread James Ring
Hey, On Thu, Jul 7, 2011 at 9:56 AM, Gary Gregory garydgreg...@gmail.com wrote: Hi All: I do like using NullArgumentException, but I find writing this over and over tedious: if (arg == null) {  thrown new NullArgumentException(argName); } something(arg); How about this instead: