Package org.beanio
Class BeanIOException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.beanio.BeanIOException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
BeanIOConfigurationException
,BeanReaderException
,BeanWriterException
public class BeanIOException extends java.lang.RuntimeException
Base class for all exceptions thrown by the BeanIO framework.- Since:
- 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BeanIOException(java.lang.String message)
Constructs a newBeanIOException
.BeanIOException(java.lang.String message, java.lang.Throwable cause)
Constructs a newBeanIOException
.BeanIOException(java.lang.Throwable cause)
Constructs a newBeanIOException
.
-
-
-
Constructor Detail
-
BeanIOException
public BeanIOException(java.lang.String message, java.lang.Throwable cause)
Constructs a newBeanIOException
.- Parameters:
message
- the error messagecause
- the root cause
-
BeanIOException
public BeanIOException(java.lang.String message)
Constructs a newBeanIOException
.- Parameters:
message
- the error message
-
BeanIOException
public BeanIOException(java.lang.Throwable cause)
Constructs a newBeanIOException
.- Parameters:
cause
- the root cause
-
-