Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. MissingBundleClassException.php

class MissingBundleClassException

Exception thrown if a bundle class does not exist.

Hierarchy

  • class \Drupal\Core\Entity\Exception\MissingBundleClassException extends \Drupal\Core\Entity\Exception\Exception

Expanded class hierarchy of MissingBundleClassException

See also

\Drupal\Core\Entity\ContentEntityStorageBase::getEntityClass()

1 file declares its use of MissingBundleClassException
ContentEntityStorageBase.php in core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php

File

core/lib/Drupal/Core/Entity/Exception/MissingBundleClassException.php, line 10

Namespace

Drupal\Core\Entity\Exception
View source
class MissingBundleClassException extends \Exception {
    
    /**
     * Constructs a MissingBundleClassException.
     *
     * @param string $bundle_class
     *   The bundle class which should exist.
     */
    public function __construct(string $bundle_class) {
        $message = sprintf('Bundle class %s does not exist.', $bundle_class);
        parent::__construct($message);
    }

}

Members

Title Sort descending Modifiers Object type Summary
MissingBundleClassException::__construct public function Constructs a MissingBundleClassException.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal