package jp.terasoluna.fw.file.dao.standard;
import java.io.IOException;
import java.io.Reader;
/**
* Reader実装クラス
* <p>
* {@link #ready()}、{@link #read()}、{@link #close()}を呼び出すと、 {@link IOException}をスローする
*/
public class LineFeed2LineReader_Stub01 extends Reader {
@Override
public void close() throws IOException {
throw new IOException();
}
@Override
public int read(char[] cbuf, int off, int len) throws IOException {
throw new IOException();
}
@Override
public boolean ready() throws IOException {
throw new IOException();
}
}