La clase SoapFault

(PHP 5, PHP 7, PHP 8)

Introducción

Representa SOAP fault.

Sinopsis de la Clase

class SoapFault extends Exception {
/* 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 */
__construct(
    string $faultcode,
    string $faultstring,
    string $faultactor = ?,
    string $detail = ?,
    string $faultname = ?,
    string $headerfault = ?
)
public __toString(): string
/* Métodos heredados */
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}

Tabla de contenidos