|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.io.OutputStream org.apache.commons.io.output.BrokenOutputStream
public class BrokenOutputStream
Broken output stream. This stream always throws an IOException
from
all OutputStream
methods.
This class is mostly useful for testing error handling in code that uses an output stream.
Constructor Summary | |
---|---|
BrokenOutputStream()
Creates a new stream that always throws an IOException |
|
BrokenOutputStream(IOException exception)
Creates a new stream that always throws the given exception. |
Method Summary | |
---|---|
void |
close()
Throws the configured exception. |
void |
flush()
Throws the configured exception. |
void |
write(int b)
Throws the configured exception. |
Methods inherited from class java.io.OutputStream |
---|
write, write |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public BrokenOutputStream(IOException exception)
exception
- the exception to be thrownpublic BrokenOutputStream()
IOException
Method Detail |
---|
public void write(int b) throws IOException
write
in class OutputStream
b
- ignored
IOException
- always thrownpublic void flush() throws IOException
flush
in interface Flushable
flush
in class OutputStream
IOException
- always thrownpublic void close() throws IOException
close
in interface Closeable
close
in class OutputStream
IOException
- always thrown
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |