Creating a new Throwable without actually throwing it is useless and is probably due to a mistake.
Throwable
if (x < 0) new IllegalArgumentException("x must be nonnegative");
if (x < 0) throw new IllegalArgumentException("x must be nonnegative");