Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Java

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.

<T> void f(T x) {
    Objects.requireNonNull(x);
}
<T> void f(T x) throws Exception {
    if (x != value) throw new Exception();
}
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.
void f(int x) {
    Objects.checkIndex(x, 123);
}
enum {
    E_OK,
    E_OUT_OF_RANGE
};

int square(int x, int *result) {
    if (x > 1073741823) {
        return E_OUT_OF_RANGE;
    }
    *result = x*x;
    return E_OK;
}

New implementation...
< >
programming-idioms.org