org.hibernate
Class PropertyValueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.hibernate.HibernateException
org.hibernate.PropertyValueException
- All Implemented Interfaces:
- Serializable
public class PropertyValueException
- extends HibernateException
Thrown when the (illegal) value of a property can not be persisted.
There are two main causes:
- a property declared not-null="true" is null
- an association references an unsaved transient instance
- See Also:
- Serialized Form
PropertyValueException
public PropertyValueException(String s,
String entityName,
String propertyName)
getEntityName
public String getEntityName()
getPropertyName
public String getPropertyName()
getMessage
public String getMessage()
- Overrides:
getMessage
in class Throwable
buildPropertyPath
public static String buildPropertyPath(String parent,
String child)
- Return a well formed property path.
Basicaly, it will return parent.child
- Parameters:
parent
- parent in pathchild
- child in path
- Returns:
- parent-child path
Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.