org.springframework.beans
Class NullValueInNestedPathException
java.lang.Object
   java.lang.Throwable
java.lang.Throwable
       java.lang.Exception
java.lang.Exception
           java.lang.RuntimeException
java.lang.RuntimeException
               org.springframework.core.NestedRuntimeException
org.springframework.core.NestedRuntimeException
                   org.springframework.beans.BeansException
org.springframework.beans.BeansException
                       org.springframework.beans.FatalBeanException
org.springframework.beans.FatalBeanException
                           org.springframework.beans.InvalidPropertyException
org.springframework.beans.InvalidPropertyException
                               org.springframework.beans.NullValueInNestedPathException
org.springframework.beans.NullValueInNestedPathException
- All Implemented Interfaces: 
- Serializable
- public class NullValueInNestedPathException 
- extends InvalidPropertyException
Exception thrown when navigation of a valid nested property
 path encounters a NullPointerException.
 
For example, navigating "spouse.age" could fail because the
 spouse property of the target object has a null value.
- Author:
- Rod Johnson
- See Also:
- Serialized Form
 
 
 
 
 
 
 
NullValueInNestedPathException
public NullValueInNestedPathException(Class beanClass,
                                      String propertyName)
- Create a new NullValueInNestedPathException.
 
- Parameters:
- beanClass- the offending bean class
- propertyName- the offending property
 
NullValueInNestedPathException
public NullValueInNestedPathException(Class beanClass,
                                      String propertyName,
                                      String msg)
- Create a new NullValueInNestedPathException.
 
- Parameters:
- beanClass- the offending bean class
- propertyName- the offending property
- msg- the detail message
 
Copyright © 2002-2008 The Spring Framework.