Idiom #89 Handle invalid argument
You've detected that the integer value of argument x passed to the current function is invalid. Write the idiomatic way to abort the function execution and signal the problem.
throw new IllegalArgumentException("Invalid value for x:" + x);
IllegalArgumentException is a RuntimeException, thus it needn't be declared in the function signature.
Other standard exceptions cover possible cases: NullPointerException, etc.
It is the caller's responsibility to provide valid input, or catch the possible exceptions.
Other standard exceptions cover possible cases: NullPointerException, etc.
It is the caller's responsibility to provide valid input, or catch the possible exceptions.