Sulu\Component\Webspace\Loader\Exception\ExpectedDefaultTemplatesNotFound::__construct PHP Method

__construct() public method

ExpectedDefaultTemplatesNotFound constructor.
public __construct ( string $webspace, string[] $expected, string[] $found )
$webspace string
$expected string[]
$found string[]
    public function __construct($webspace, $expected, $found)
    {
        parent::__construct(sprintf('One of expected types "[%s]" not found (found "[%s]") in webspace "%s".', implode(', ', $expected), implode(', ', $found), $webspace));
        $this->webspace = $webspace;
    }
ExpectedDefaultTemplatesNotFound