Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 3 |
NoCorrespondingEntityClassException | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 3 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Entity\Exception\NoCorrespondingEntityClassException. | |
*/ | |
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 an 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); | |
} | |
} |