update page now

The Uri\WhatWg\InvalidUrlException class

(PHP 8 >= 8.5.0)

Einführung

Indicates that a given URL is invalid or that an operation would result in an invalid URL according to the » WHATWG URL Standard.

Klassenbeschreibung

namespace Uri\WhatWg;
class InvalidUrlException extends Uri\InvalidUriException {
/* Eigenschaften */
public readonly array $errors;
/* Geerbte Eigenschaften */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* Methoden */
public Uri\WhatWg\InvalidUrlException::__construct(
    string $message = "",
    array $errors = [],
    int $code = 0,
    ?Throwable $previous = null
)
/* Geerbte Methoden */
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}

Eigenschaften

errors
An Array of Uri\WhatWg\UrlValidationError objects.

Inhaltsverzeichnis

add a note

User Contributed Notes

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