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
public class BrokenWriter extends Writer
Broken writer. This writer always throws anIOException
from allWriter
methods.This class is mostly useful for testing error handling in code that uses a writer.
- Since:
- 2.0
-
-
Constructor Summary
Constructors Constructor Description BrokenWriter()
Creates a new writer that always throws anIOException
BrokenWriter(IOException exception)
Creates a new writer that always throws the given exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Throws the configured exception.void
flush()
Throws the configured exception.void
write(char[] cbuf, int off, int len)
Throws the configured exception.
-
-
-
Constructor Detail
-
BrokenWriter
public BrokenWriter(IOException exception)
Creates a new writer that always throws the given exception.- Parameters:
exception
- the exception to be thrown
-
BrokenWriter
public BrokenWriter()
Creates a new writer that always throws anIOException
-
-
Method Detail
-
write
public void write(char[] cbuf, int off, int len) throws IOException
Throws the configured exception.- Specified by:
write
in classWriter
- Parameters:
cbuf
- ignoredoff
- ignoredlen
- ignored- Throws:
IOException
- always thrown
-
flush
public void flush() throws IOException
Throws the configured exception.- Specified by:
flush
in interfaceFlushable
- Specified by:
flush
in classWriter
- Throws:
IOException
- always thrown
-
close
public void close() throws IOException
Throws the configured exception.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in classWriter
- Throws:
IOException
- always thrown
-
-