PHP 8.3.4 Released!

Clase OAuthException

(PECL OAuth >= 0.99.1)

Introducción

Esta excepción es lanzada cuando un error excepcional durante el uso de la extensión OAuth y contiene información útil de depuración.

Sinopsis de la Clase

class OAuthException extends Exception {
/* Propiedades */
public $lastResponse;
public $debugInfo;
/* Propiedades heredadas */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* Métodos heredados */
final public Exception::getMessage(): string
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}

Propiedades

lastResponse

La respuesta de la excepción ocurrida, si la hubiera

debugInfo

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top