update page now

La clase Uri\InvalidUriException

(PHP 8 >= 8.5.0)

Introducción

Indica que una URI dada es inválida o que una operación resultaría en una URI inválida.

Sinopsis de la Clase

namespace Uri;
class InvalidUriException extends Uri\UriException {
/* 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 */
public Exception::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}
add a note

User Contributed Notes

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