if (transferList != null) {
for (int i = 0; i < transferList.size(); i++) {
Transfer transfer = transferList.get(i);
try {
if (transfer.available() > 0)
throw DbException.throwInternalError("the transfer available bytes was " + transfer.available());
} catch (IOException e) {
throw DbException.convert(e);
}
}