ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
CouldNotFindPageMetrics.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
23use ilException;
24
31{
32 public static function by(int $contentPageId, int $pageId, string $language): self
33 {
34 return new self(sprintf(
35 'Could not find content page page metrics for page with page id %s and language %s for parent with id %s',
36 $contentPageId,
37 $pageId,
38 $language
39 ));
40 }
41}
static by(int $contentPageId, int $pageId, string $language)
Base class for ILIAS Exception handling.