| org.springframework.binding.method.MethodInvocationException
MethodInvocationException | public class MethodInvocationException extends NestedRuntimeException (Code) | | Base class for exceptions that report a method invocation failure.
author: Keith Donald |
MethodInvocationException | public MethodInvocationException(MethodSignature methodSignature, Object[] arguments, Throwable cause)(Code) | | Signals that the method with the specified signature could not be invoked
with the provided arguments.
Parameters: methodSignature - the method signature Parameters: arguments - the arguments Parameters: cause - the root cause |
getArguments | public Object[] getArguments()(Code) | | Returns the method invocation arguments.
|
getMethodSignature | public MethodSignature getMethodSignature()(Code) | | Returns the invoked method's signature.
|
getTargetException | public Throwable getTargetException()(Code) | | Returns the target root cause exception of the method invocation failure.
the target throwable |
|
|