* This method is an input method which is unsupported for PrintStreamToSeekStreamConverters. This method will always
* throw an <code>UnsupportedOperationException</code>
*/
@Override
public int readText(TextData target, int length) {
UnsupportedOperationException errorVar = new UnsupportedOperationException("readText() cannot be invoked on a print stream via the PrintStreamToSeekStreamConverter");
ErrorMgr.addError(errorVar);
throw errorVar;
}