????
+--Error
+--org.as2lib.env.except.AbstractThrowable
+--org.as2lib.env.except.FatalException
+--org.as2lib.env.overload.OverloadException
+--org.as2lib.env.overload.UnknownOverloadHandlerException
UnknownOverloadHandlerException
will be thrown if no appropriate overload
handler for a list of real arguments could be found.
Whether an overload handler matches a given list of real arguments is determined by the OverloadHandler#matches method.
new UnknownOverloadHandlerException()
addStackTraceElement(), getCause(), getMessage(), getStackTrace(), getStringifier(), initCause(), setStringifier()
public function UnknownOverloadHandlerException(message:String, thrower, args:Array, overloadTarget, overloadedMethod:Function, overloadArguments:Array, overloadHandlers:Array)
Constructs a new UnknownOverloadHandlerException
instance.
message | the message of the exception |
thrower | the object whose method threw the exception |
args | the arguments of the method that threw the exception |
overloadTarget | the target object the method should be invoked on / on which the overload is performed |
overloadedMethod | the method that is overloaded |
overloadArguments | the real arguments used to perform the overloading |
overloadHandlers | an array containing all OverloadHandler instances
that do not match the overload arguments
|