1 <p> This code creates an exception (or error) object, but doesn't do anything with it. For example,
6 new IllegalArgumentException("x must be nonnegative");
9 <p>It was probably the intent of the programmer to throw the created exception:</p>
13 throw new IllegalArgumentException("x must be nonnegative");