You are here

public function MissingArchiveException::__construct in Mini site 8

MissingArchiveException constructor.

Parameters

string $uri: The URI of the missing archive file.

File

src/Exception/MissingArchiveException.php, line 20

Class

MissingArchiveException
Class MissingArchiveException.

Namespace

Drupal\minisite\Exception

Code

public function __construct($uri) {
  parent::__construct(sprintf('Archive file "%s" is missing.', $uri));
}