The Spring Framework

org.springframework.beans
Class PropertyAccessException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.beans.BeansException
                      extended by org.springframework.beans.PropertyAccessException
All Implemented Interfaces:
Serializable, ErrorCoded
Direct Known Subclasses:
MethodInvocationException, TypeMismatchException

public abstract class PropertyAccessException
extends BeansException
implements ErrorCoded

Superclass for exceptions related to a property access, such as type mismatch or invocation target exception.

Author:
Rod Johnson, Juergen Hoeller
See Also:
Serialized Form

Constructor Summary
PropertyAccessException(PropertyChangeEvent propertyChangeEvent, String msg, Throwable cause)
          Create a new PropertyAccessException.
PropertyAccessException(String msg, Throwable cause)
          Create a new PropertyAccessException without PropertyChangeEvent.
 
Method Summary
 PropertyChangeEvent getPropertyChangeEvent()
          Return the PropertyChangeEvent that resulted in the problem.
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, getMostSpecificCause, getRootCause, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.springframework.core.ErrorCoded
getErrorCode
 

Constructor Detail

PropertyAccessException

public PropertyAccessException(PropertyChangeEvent propertyChangeEvent,
                               String msg,
                               Throwable cause)
Create a new PropertyAccessException.

Parameters:
propertyChangeEvent - the PropertyChangeEvent that resulted in the problem
msg - the detail message
cause - the root cause

PropertyAccessException

public PropertyAccessException(String msg,
                               Throwable cause)
Create a new PropertyAccessException without PropertyChangeEvent.

Parameters:
msg - the detail message
cause - the root cause
Method Detail

getPropertyChangeEvent

public PropertyChangeEvent getPropertyChangeEvent()
Return the PropertyChangeEvent that resulted in the problem. Only available if an actual bean property was affected.


The Spring Framework

Copyright © 2002-2007 The Spring Framework.