Package org.beanio
Class InvalidBeanException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.beanio.BeanIOException
-
- org.beanio.BeanWriterException
-
- org.beanio.InvalidBeanException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidBeanException extends BeanWriterException
Exception thrown by aBeanWriter
orMarshaller
, when a bean cannot be marshalled to meet the configured field validation rules.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidBeanException(java.lang.String message)
Constructs a new InvalidBeanException.InvalidBeanException(java.lang.String message, java.lang.Throwable cause)
Constructs a new InvalidBeanException.InvalidBeanException(java.lang.Throwable cause)
Constructs a new InvalidBeanException.
-
-
-
Constructor Detail
-
InvalidBeanException
public InvalidBeanException(java.lang.String message)
Constructs a new InvalidBeanException.- Parameters:
message
- the error message
-
InvalidBeanException
public InvalidBeanException(java.lang.String message, java.lang.Throwable cause)
Constructs a new InvalidBeanException.- Parameters:
message
- the error messagecause
- the root cause
-
InvalidBeanException
public InvalidBeanException(java.lang.Throwable cause)
Constructs a new InvalidBeanException.- Parameters:
cause
- the root cause
-
-