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

Breadcrumb

  1. Drupal Core 11.1.x

NoCorrespondingEntityClassException.php

Namespace

Drupal\Core\Entity\Exception

File

core/lib/Drupal/Core/Entity/Exception/NoCorrespondingEntityClassException.php

View source
<?php

namespace Drupal\Core\Entity\Exception;


/**
 * Exception thrown if an entity type is not represented by a class.
 *
 * This might occur by calling a static method on an abstract class.
 *
 * @see \Drupal\Core\Entity\EntityTypeRepositoryInterface::getEntityTypeFromClass()
 */
class NoCorrespondingEntityClassException extends \Exception {
    
    /**
     * Constructs a NoCorrespondingEntityClassException.
     *
     * @param string $class
     *   The class which does not correspond to an entity type.
     */
    public function __construct($class) {
        $message = sprintf('The %s class does not correspond to an entity type.', $class);
        parent::__construct($message);
    }

}

Classes

Title Deprecated Summary
NoCorrespondingEntityClassException Exception thrown if an entity type is not represented by a class.
RSS feed
Powered by Drupal