class MappingException in Plug 7
Same name in this branch
- 7 lib/Symfony/validator/Symfony/Component/Validator/Exception/MappingException.php \Symfony\Component\Validator\Exception\MappingException
 - 7 lib/doctrine/common/lib/Doctrine/Common/Persistence/Mapping/MappingException.php \Doctrine\Common\Persistence\Mapping\MappingException
 
A MappingException indicates that something is wrong with the mapping setup.
@since 2.2
Hierarchy
- class \Doctrine\Common\Persistence\Mapping\MappingException extends \Doctrine\Common\Persistence\Mapping\Exception
 
Expanded class hierarchy of MappingException
6 files declare their use of MappingException
- AnnotationDriver.php in lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ Driver/ AnnotationDriver.php  - DefaultFileLocator.php in lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ Driver/ DefaultFileLocator.php  - FileDriver.php in lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ Driver/ FileDriver.php  - MappingDriverChain.php in lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ Driver/ MappingDriverChain.php  - StaticPHPDriver.php in lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ Driver/ StaticPHPDriver.php  
File
- lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ MappingException.php, line 27  
Namespace
Doctrine\Common\Persistence\MappingView source
class MappingException extends \Exception {
  /**
   * @param string $className
   * @param array  $namespaces
   *
   * @return self
   */
  public static function classNotFoundInNamespaces($className, $namespaces) {
    return new self("The class '" . $className . "' was not found in the " . "chain configured namespaces " . implode(", ", $namespaces));
  }
  /**
   * @return self
   */
  public static function pathRequired() {
    return new self("Specifying the paths to your entities is required " . "in the AnnotationDriver to retrieve all class names.");
  }
  /**
   * @param string|null $path
   *
   * @return self
   */
  public static function fileMappingDriversRequireConfiguredDirectoryPath($path = null) {
    if (!empty($path)) {
      $path = '[' . $path . ']';
    }
    return new self('File mapping drivers must have a valid directory path, ' . 'however the given path ' . $path . ' seems to be incorrect!');
  }
  /**
   * @param string $entityName
   * @param string $fileName
   *
   * @return self
   */
  public static function mappingFileNotFound($entityName, $fileName) {
    return new self("No mapping file found named '{$fileName}' for class '{$entityName}'.");
  }
  /**
   * @param string $entityName
   * @param string $fileName
   *
   * @return self
   */
  public static function invalidMappingFile($entityName, $fileName) {
    return new self("Invalid mapping file '{$fileName}' for class '{$entityName}'.");
  }
  /**
   * @param string $className
   *
   * @return self
   */
  public static function nonExistingClass($className) {
    return new self("Class '{$className}' does not exist");
  }
}Members
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            MappingException:: | 
                  public static | function | ||
| 
            MappingException:: | 
                  public static | function | ||
| 
            MappingException:: | 
                  public static | function | ||
| 
            MappingException:: | 
                  public static | function | ||
| 
            MappingException:: | 
                  public static | function | ||
| 
            MappingException:: | 
                  public static | function |