try {
byte[] target = new byte[len];
System.arraycopy(b, off, target, 0, len);
getDeltaGenerator().sendDelta(myPath, target, len, myDeltaConsumer);
} catch (SVNException svne) {
IOExceptionWrapper ioeWrapper = new IOExceptionWrapper(svne);
throw ioeWrapper;
}
}
}