Parameters
string $className:
array $namespaces:
Return value
MappingException
File
- drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/MappingException.php, line 36
Class
- MappingException
- A MappingException indicates that something is wrong with the mapping setup.
Namespace
Doctrine\Common\Persistence\Mapping
Code
public static function classNotFoundInNamespaces($className, $namespaces) {
return new self("The class '" . $className . "' was not found in the " . "chain configured namespaces " . implode(", ", $namespaces));
}