Logo

Programming-Idioms

  • Ada
  • JS
  • Fortran
  • D

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.

void foo(int x)
in
{
    assert(x != 0, "wrong value for x");
}
body
{
    // function
}

When the software is tested, an input contract can be used to verify x value. In release mode, the input contracts are not included anymore.
import std.format;
throw new Exception("invalid value for x (%s) in '%s'".format(x, __PRETTY_FUNCTION__));

Special keywords such as __FUNCTION__, __FILENAME__,_ _LINE__ can be used to throw a message that's useful.
throw new Error('x is invalid');
  if (x > largest_value) error stop "Illegal value in function."

This will also stop all other images.
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