NoProfilesException.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Installer/Exception/NoProfilesException.php
  2. 8.9.x core/lib/Drupal/Core/Installer/Exception/NoProfilesException.php
  3. 10 core/lib/Drupal/Core/Installer/Exception/NoProfilesException.php

Namespace

Drupal\Core\Installer\Exception

File

core/lib/Drupal/Core/Installer/Exception/NoProfilesException.php

View source
<?php

namespace Drupal\Core\Installer\Exception;

use Drupal\Core\StringTranslation\TranslationInterface;

/**
 * Exception thrown if no installation profiles are available.
 */
class NoProfilesException extends InstallerException {
    
    /**
     * Constructs a new "no profiles available" exception.
     *
     * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
     *   The string translation manager.
     */
    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);
    }

}

Classes

Title Deprecated Summary
NoProfilesException Exception thrown if no installation profiles are available.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.