Yar_Client_Exception::getType

(PECL yar >= 1.0.0)

Yar_Client_Exception::getTypeRetrieve exception's type

Açıklama

public function Yar_Client_Exception::getType(): string

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.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Returns "Yar_Exception_Client".

Örnekler

Örnek 1 Yar_Client_Exception::getType() example

<?php
$client = new Yar_Client("http://api.example.com/operator.php");

try {
    $client->some_method("parameter");
} catch (Yar_Client_Exception $e) {
    var_dump($e->getType());
    var_dump($e->getCode());
}
?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

string(20) "Yar_Exception_Client"
int(16)

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.