public String substringData(int offset, int count) throws DOMException {
try {
return getStringValue().substring(offset, offset+count);
} catch (IndexOutOfBoundsException err2) {
throw new DOMExceptionImpl(DOMException.INDEX_SIZE_ERR,
"substringData: index out of bounds");
}
}