org.springframework.beans
Class MethodInvocationException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.springframework.core.NestedRuntimeException
                  extended byorg.springframework.beans.BeansException
                      extended byorg.springframework.beans.PropertyAccessException
                          extended byorg.springframework.beans.MethodInvocationException
All Implemented Interfaces:
ErrorCoded, Serializable

public class MethodInvocationException
extends PropertyAccessException

Thrown when a bean property getter or setter method throws an exception, analogous to an InvocationTargetException.

Author:
Rod Johnson
See Also:
Serialized Form

Field Summary
static String ERROR_CODE
          Error code that a method invocation error will be registered with.
 
Fields inherited from class java.lang.RuntimeException
 
Constructor Summary
MethodInvocationException(PropertyChangeEvent propertyChangeEvent, Throwable ex)
          Create a new MethodInvocationException.
 
Method Summary
 String getErrorCode()
          Return the error code associated with this failure.
 
Methods inherited from class org.springframework.beans.PropertyAccessException
getPropertyChangeEvent
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, 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
 

Field Detail

ERROR_CODE

public static final String ERROR_CODE
Error code that a method invocation error will be registered with.

See Also:
Constant Field Values
Constructor Detail

MethodInvocationException

public MethodInvocationException(PropertyChangeEvent propertyChangeEvent,
                                 Throwable ex)
Create a new MethodInvocationException.

Parameters:
propertyChangeEvent - PropertyChangeEvent that resulted in an exception
ex - Throwable raised by invoked method
Method Detail

getErrorCode

public String getErrorCode()
Description copied from interface: ErrorCoded
Return the error code associated with this failure. The GUI can render this any way it pleases, allowing for localization etc.

Returns:
a String error code associated with this failure, or null if not error-coded


Copyright (C) 2003-2004 The Spring Framework Project.