| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.beans.BeansException
org.springframework.beans.PropertyAccessException
org.springframework.beans.TypeMismatchException
public class TypeMismatchException
Exception thrown on a type mismatch when trying to set a bean property.
| Field Summary | |
|---|---|
| static String | ERROR_CODEError code that a type mismatch error will be registered with. | 
| Constructor Summary | |
|---|---|
| TypeMismatchException(Object value,
                      Class requiredType)Create a new TypeMismatchException without PropertyChangeEvent. | |
| TypeMismatchException(Object value,
                      Class requiredType,
                      Throwable cause)Create a new TypeMismatchException without PropertyChangeEvent. | |
| TypeMismatchException(PropertyChangeEvent propertyChangeEvent,
                      Class requiredType)Create a new TypeMismatchException. | |
| TypeMismatchException(PropertyChangeEvent propertyChangeEvent,
                      Class requiredType,
                      Throwable cause)Create a new TypeMismatchException. | |
| Method Summary | |
|---|---|
|  String | getErrorCode()Return the error code associated with this failure. | 
|  Class | getRequiredType()Return the required target type, if any. | 
|  Object | getValue()Return the offending value (may be null) | 
| Methods inherited from class org.springframework.beans.PropertyAccessException | 
|---|
| getPropertyChangeEvent | 
| Methods inherited from class org.springframework.beans.BeansException | 
|---|
| equals, hashCode | 
| Methods inherited from class org.springframework.core.NestedRuntimeException | 
|---|
| contains, getMessage, getMostSpecificCause, getRootCause | 
| Methods inherited from class java.lang.Throwable | 
|---|
| fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString | 
| Methods inherited from class java.lang.Object | 
|---|
| clone, finalize, getClass, notify, notifyAll, wait, wait, wait | 
| Field Detail | 
|---|
public static final String ERROR_CODE
| Constructor Detail | 
|---|
public TypeMismatchException(PropertyChangeEvent propertyChangeEvent,
                             Class requiredType)
propertyChangeEvent - the PropertyChangeEvent that resulted in the problemrequiredType - the required target type
public TypeMismatchException(PropertyChangeEvent propertyChangeEvent,
                             Class requiredType,
                             Throwable cause)
propertyChangeEvent - the PropertyChangeEvent that resulted in the problemrequiredType - the required target type (or null if not known)cause - the root cause (may be null)
public TypeMismatchException(Object value,
                             Class requiredType)
value - the offending value that couldn't be converted (may be null)requiredType - the required target type (or null if not known)
public TypeMismatchException(Object value,
                             Class requiredType,
                             Throwable cause)
value - the offending value that couldn't be converted (may be null)requiredType - the required target type (or null if not known)cause - the root cause (may be null)| Method Detail | 
|---|
public Object getValue()
null)
public Class getRequiredType()
public String getErrorCode()
ErrorCoded
null if not error-coded| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||