Package org.beanio
Class BeanWriterException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.beanio.BeanIOException
-
- org.beanio.BeanWriterException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
BeanWriterIOException,InvalidBeanException
public class BeanWriterException extends BeanIOException
Exception thrown by aBeanWriterorMarshaller.In most cases, a subclass of this exception is thrown. In a few (but rare) fatal cases, this exception may be thrown directly.
- Since:
- 1.0
- See Also:
BeanWriter, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BeanWriterException(java.lang.String message)Constructs a newBeanWriterException.BeanWriterException(java.lang.String message, java.lang.Throwable cause)Constructs a newBeanWriterException.BeanWriterException(java.lang.Throwable cause)Constructs a newBeanWriterException.
-
-
-
Constructor Detail
-
BeanWriterException
public BeanWriterException(java.lang.String message, java.lang.Throwable cause)Constructs a newBeanWriterException.- Parameters:
message- the error messagecause- the root cause
-
BeanWriterException
public BeanWriterException(java.lang.String message)
Constructs a newBeanWriterException.- Parameters:
message- the error message
-
BeanWriterException
public BeanWriterException(java.lang.Throwable cause)
Constructs a newBeanWriterException.- Parameters:
cause- the root cause
-
-