Home | History | Annotate | Download | only in io

Lines Matching defs:IOException

28 import java.io.IOException;
40 public TestInputStream(InputStream in, TestOption... options) throws IOException {
44 public TestInputStream(InputStream in, Iterable<TestOption> options) throws IOException {
55 public int read() throws IOException {
62 public int read(byte[] b, int off, int len) throws IOException {
69 public long skip(long n) throws IOException {
76 public int available() throws IOException {
82 public void close() throws IOException {
88 private void throwIf(TestOption option) throws IOException {
92 private static void throwIf(boolean condition) throws IOException {
94 throw new IOException();