public static class OperationNotFound
extends java.lang.Object
OperationNotFound
exception indicates that the method specified in
the request could not be found.
Every API request specifies a service identifier and an operation identifier along with the parameters. If the API infrastructure is unable to find the requested interface or method it reports this exception.
This exception can be reported by the API infrastructure for any method, but it is specific to the API infrastructure, and should never be reported by the implementation of any method.
Examples:
Counterexamples:
NotFound
exception would be
used instead.