ActivityTerminatedException
{
Object block = readBlock(mColumnInput);
if (!(block instanceof Number))
{
throw new InvalidInputValueException(
INPUT_NOMINAL_VALUES, Number.class, block.getClass());
}
Number index = (Number)block;
return index.intValue();
}