[Snmap-developer] SNMAP/src/net/sf/snmap PropertyAccessException.java,NONE,1.1
Status: Planning
Brought to you by:
arden
|
From: arden l. <ar...@us...> - 2006-01-13 03:17:00
|
Update of /cvsroot/snmap/SNMAP/src/net/sf/snmap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6628/src/net/sf/snmap Added Files: PropertyAccessException.java Log Message: --- NEW FILE: PropertyAccessException.java --- package net.sf.snmap; import net.sf.snmap.util.StringHelper; /** * A problem occurred accessing a property of an instance of a * persistent class by reflection, or via CGLIB. There are a * number of possible underlying causes, including * <ul> * <li>failure of a security check * <li>an exception occurring inside the getter or setter method * <li>a nullable database column was mapped to a primitive-type property * <li>the Hibernate type was not castable to the property type (or vice-versa) * </ul> * @author Gavin King */ public class PropertyAccessException extends SnmapException { private static final long serialVersionUID = 4947808644643754386L; private final Class persistentClass; private final String propertyName; private final boolean wasSetter; public PropertyAccessException(Throwable root, String s, boolean wasSetter, Class persistentClass, String propertyName) { super(s, root); this.persistentClass = persistentClass; this.wasSetter = wasSetter; this.propertyName = propertyName; } public Class getPersistentClass() { return persistentClass; } public String getPropertyName() { return propertyName; } public String getMessage() { return super.getMessage() + ( wasSetter ? " setter of " : " getter of ") + StringHelper.qualify( persistentClass.getName(), propertyName ); } } |