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