Package org.beanio
Class BeanWriterIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.beanio.BeanIOException
-
- org.beanio.BeanWriterException
-
- org.beanio.BeanWriterIOException
-
- All Implemented Interfaces:
java.io.Serializable
public class BeanWriterIOException extends BeanWriterException
Exception thrown when aBeanWriter
's underlying output stream throws anIOException
.- Since:
- 1.0
- See Also:
BeanWriter
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BeanWriterIOException(java.io.IOException cause)
Constructs a newBeanWriterIOException
.BeanWriterIOException(java.lang.String message)
Constructs a newBeanWriterIOException
.BeanWriterIOException(java.lang.String message, java.io.IOException cause)
Constructs a newBeanWriterIOException
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.io.IOException
getCause()
-
-
-
Constructor Detail
-
BeanWriterIOException
public BeanWriterIOException(java.lang.String message, java.io.IOException cause)
Constructs a newBeanWriterIOException
.- Parameters:
message
- the error messagecause
- the root cause
-
BeanWriterIOException
public BeanWriterIOException(java.lang.String message)
Constructs a newBeanWriterIOException
.- Parameters:
message
- the error message
-
BeanWriterIOException
public BeanWriterIOException(java.io.IOException cause)
Constructs a newBeanWriterIOException
.- Parameters:
cause
- the root cause
-
-