Package org.springframework.beans
Class MethodInvocationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.beans.BeansException
org.springframework.beans.PropertyAccessException
org.springframework.beans.MethodInvocationException
- All Implemented Interfaces:
Serializable
Thrown when a bean property getter or setter method throws an exception,
analogous to an InvocationTargetException.
- Author:
- Rod Johnson
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Error code that a method invocation error will be registered with. -
Constructor Summary
ConstructorDescriptionMethodInvocationException
(PropertyChangeEvent propertyChangeEvent, Throwable cause) Create a new MethodInvocationException. -
Method Summary
Modifier and TypeMethodDescriptionReturn a corresponding error code for this type of exception.Methods inherited from class org.springframework.beans.PropertyAccessException
getPropertyChangeEvent, getPropertyName, getValue
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
ERROR_CODE
Error code that a method invocation error will be registered with.- See Also:
-
-
Constructor Details
-
MethodInvocationException
Create a new MethodInvocationException.- Parameters:
propertyChangeEvent
- the PropertyChangeEvent that resulted in an exceptioncause
- the Throwable raised by the invoked method
-
-
Method Details
-
getErrorCode
Description copied from class:PropertyAccessException
Return a corresponding error code for this type of exception.- Specified by:
getErrorCode
in classPropertyAccessException
-