Package org.apache.commons.io.output
Class BrokenWriter
java.lang.Object
java.io.Writer
org.apache.commons.io.output.BrokenWriter
- All Implemented Interfaces:
Closeable,Flushable,Appendable,AutoCloseable
Always throws an
IOException from all Writer methods.
This class is mostly useful for testing error handling in code that uses a writer.
- Since:
- 2.0
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new writer that always throws anIOException.BrokenWriter(IOException exception) Constructs a new writer that always throws the given exception.BrokenWriter(Supplier<IOException> exceptionSupplier) Constructs a new writer that always throws anIOException. -
Method Summary
-
Field Details
-
INSTANCE
The singleton instance.- Since:
- 2.12.0
-
-
Constructor Details
-
BrokenWriter
public BrokenWriter()Constructs a new writer that always throws anIOException. -
BrokenWriter
Constructs a new writer that always throws the given exception.- Parameters:
exception- the exception to be thrown.
-
BrokenWriter
Constructs a new writer that always throws anIOException.- Parameters:
exceptionSupplier- a supplier for the exception to be thrown.- Since:
- 2.12.0
-
-
Method Details
-
close
Throws the configured exception.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classWriter- Throws:
IOException- always thrown
-
flush
Throws the configured exception.- Specified by:
flushin interfaceFlushable- Specified by:
flushin classWriter- Throws:
IOException- always thrown
-
write
Throws the configured exception.- Specified by:
writein classWriter- Parameters:
cbuf- ignoredoff- ignoredlen- ignored- Throws:
IOException- always thrown
-