org.springframework.binding.method
Class InvalidMethodKeyException

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.binding.method.InvalidMethodKeyException
All Implemented Interfaces:
java.io.Serializable

public class InvalidMethodKeyException
extends org.springframework.core.NestedRuntimeException

Thrown when a method key could not be resolved to an invokable java Method on a Class.

Author:
Keith Donald
See Also:
Serialized Form

Constructor Summary
InvalidMethodKeyException(MethodKey methodKey, java.lang.Exception cause)
          Creates an exception signaling an invalid method signature.
 
Method Summary
 MethodKey getMethodKey()
          Returns the invalid method key.
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMessage, getMostSpecificCause, getRootCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidMethodKeyException

public InvalidMethodKeyException(MethodKey methodKey,
                                 java.lang.Exception cause)
Creates an exception signaling an invalid method signature.

Parameters:
methodKey - the class method key
cause - the cause
Method Detail

getMethodKey

public MethodKey getMethodKey()
Returns the invalid method key.

Returns:
the method key.


Copyright © 2009 Spring Framework. All Rights Reserved.