function clients_connection_broken::callMethodArray in Web Service Clients 7.2
Same name and namespace in other branches
- 6.2 clients.inc \clients_connection_broken::callMethodArray()
Fail to call a remote method with an array of parameters.
This is provided so attempting to call a method on a bad connection throws an exception.
Return value
Nothing.
Throws
Exception with the error the handler set on creation.
Overrides clients_connection_base::callMethodArray
File
- ./
clients.inc, line 211 - Contains basic classes for client connections.
Class
- clients_connection_broken
- Connection class for broken connections.
Code
function callMethodArray($method, $method_params = array()) {
throw new Exception($this->configuration['broken message']);
}