public class

ConversionNotSupportedException

extends TypeMismatchException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.springframework.core.NestedRuntimeException
           ↳ org.springframework.beans.BeansException
             ↳ org.springframework.beans.PropertyAccessException
               ↳ org.springframework.beans.TypeMismatchException
                 ↳ org.springframework.beans.ConversionNotSupportedException

Class Overview

Exception thrown when no suitable editor or converter can be found for a bean property.

Summary

[Expand]
Inherited Constants
From class org.springframework.beans.TypeMismatchException
Public Constructors
ConversionNotSupportedException(PropertyChangeEvent propertyChangeEvent, Class requiredType, Throwable cause)
Create a new ConversionNotSupportedException.
ConversionNotSupportedException(Object value, Class requiredType, Throwable cause)
Create a new ConversionNotSupportedException.
[Expand]
Inherited Methods
From class org.springframework.beans.TypeMismatchException
From class org.springframework.beans.PropertyAccessException
From class org.springframework.beans.BeansException
From class org.springframework.core.NestedRuntimeException
From class java.lang.Throwable
From class java.lang.Object
From interface org.springframework.core.ErrorCoded

Public Constructors

public ConversionNotSupportedException (PropertyChangeEvent propertyChangeEvent, Class requiredType, Throwable cause)

Also: SpringBeans

Create a new ConversionNotSupportedException.

Parameters
propertyChangeEvent the PropertyChangeEvent that resulted in the problem
requiredType the required target type (or null if not known)
cause the root cause (may be null)

public ConversionNotSupportedException (Object value, Class requiredType, Throwable cause)

Also: SpringBeans

Create a new ConversionNotSupportedException.

Parameters
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)