Package org.apache.commons.beanutils2
Class ConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.beanutils2.ConversionException
- All Implemented Interfaces:
- Serializable
A ConversionException indicates that a call to 
Converter.convert() has failed to complete successfully.- Since:
- 1.3
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionConversionException(String message) Constructs a new exception with the specified message.ConversionException(String message, Throwable cause) Constructs a new exception with the specified message and root cause.ConversionException(Throwable cause) Constructs a new exception with the specified root cause.
- 
Method SummaryModifier and TypeMethodDescriptionstatic ConversionExceptionConstructs a new instance with a message formatted usingString.format(String, Object...).Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ConversionExceptionConstructs a new exception with the specified message.- Parameters:
- message- The message describing this exception
 
- 
ConversionExceptionConstructs a new exception with the specified message and root cause.- Parameters:
- message- The message describing this exception
- cause- The root cause of this exception
 
- 
ConversionExceptionConstructs a new exception with the specified root cause.- Parameters:
- cause- The root cause of this exception
 
 
- 
- 
Method Details- 
formatConstructs a new instance with a message formatted usingString.format(String, Object...).- Parameters:
- format- See- String.format(String, Object...).
- args- See- String.format(String, Object...).
- Returns:
- a new instance with a message formatted using String.format(String, Object...).
- Since:
- 2.0.0
 
 
-