NoProfilesException.php in Zircon Profile 8
File
core/lib/Drupal/Core/Installer/Exception/NoProfilesException.php
View source
<?php
namespace Drupal\Core\Installer\Exception;
use Drupal\Core\StringTranslation\TranslationInterface;
class NoProfilesException extends InstallerException {
public function __construct(TranslationInterface $string_translation) {
$this->stringTranslation = $string_translation;
$title = $this
->t('No profiles available');
$message = $this
->t('We were unable to find any installation profiles. Installation profiles tell us what modules to enable and what schema to install in the database. A profile is necessary to continue with the installation process.');
parent::__construct($message, $title);
}
}