NoCorrespondingEntityClassException.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\Core\Entity\ExceptionFile
core/lib/Drupal/Core/Entity/Exception/NoCorrespondingEntityClassException.phpView 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\Entity::getEntityTypeFromStaticClass()
*/
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
Name | Description |
---|---|
NoCorrespondingEntityClassException | Exception thrown if an entity type is not represented by a class. |