(PECL yar >= 1.0.0)
Yar_Client_Exception::getType — Retrieve exception's type
Returns the type of the exception. Client-side exceptions are raised by
the client itself (transport failures, protocol errors and so on), so
the type is always the fixed string
"Yar_Exception_Client". Use
Exception::getCode() to tell the individual
failure apart; the code is one of the YAR_ERR_*
constants.
This function has no parameters.
Returns "Yar_Exception_Client".
Example #1 Yar_Client_Exception::getType() example
<?php
$client = new Yar_Client("http://host/api/");
try {
$client->some_method("parameter");
} catch (Yar_Client_Exception $e) {
var_dump($e->getType());
var_dump($e->getCode());
}
?>The above example will output something similar to:
string(20) "Yar_Exception_Client" int(16)