koala.dynamicjava.util
Class AmbiguousMethodException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by koala.dynamicjava.util.AmbiguousMethodException
All Implemented Interfaces:
java.io.Serializable

public class AmbiguousMethodException
extends java.lang.RuntimeException

This exception is thrown when more than one method is acceptable during a method lookup due to the new features added in 1.5

See Also:
Serialized Form

Constructor Summary
AmbiguousMethodException(java.lang.reflect.Method m1, java.lang.reflect.Method m2)
           
AmbiguousMethodException(java.lang.String e)
          Public constructor - calls the super class constructor
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, 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

AmbiguousMethodException

public AmbiguousMethodException(java.lang.String e)
Public constructor - calls the super class constructor

Parameters:
e - - the message to be shown when the exception occurs

AmbiguousMethodException

public AmbiguousMethodException(java.lang.reflect.Method m1,
                                java.lang.reflect.Method m2)