1 16 17 package org.springframework.beans; 18 19 28 public class NullValueInNestedPathException extends InvalidPropertyException { 29 30 35 public NullValueInNestedPathException(Class beanClass, String propertyName) { 36 super(beanClass, propertyName, "Value of nested property '" + propertyName + "' is null"); 37 } 38 39 45 public NullValueInNestedPathException(Class beanClass, String propertyName, String msg) { 46 super(beanClass, propertyName, msg); 47 } 48 49 } 50 | Popular Tags |