final CommandCell cmd = (CommandCell) cellValue;
cellValue = (T) cmd.run(prepareExecutionContext(coord, output));
}
catch (CoordinateNotFoundException e)
{
throw new CoordinateNotFoundException("Coordinate not found in NCube '" + name + "'\n" + stackToString(), e);
}
catch (Exception e)
{
throw new RuntimeException("Error occurred executing CommandCell in NCube '" + name + "'\n" + stackToString(), e);
}