throw new IOException("No medium");
}
final int blockLength = capacity.getBlockLength();
final int lba = (int) (devOffset / blockLength);
final int nrBlocks = length / blockLength;
final SCSIDevice dev = (SCSIDevice) getDevice();
try {
MMCUtils.readData(dev, lba, nrBlocks, dest, destOffset);
} catch (SCSIException ex) {
final IOException ioe = new IOException();
ioe.initCause(ex);