[2.0][DDC-260] Fixed/Corrected patch.
This commit is contained in:
parent
572f728153
commit
c4549c4541
1 changed files with 4 additions and 3 deletions
|
@ -26,7 +26,7 @@ namespace Doctrine\ORM\Mapping;
|
||||||
*
|
*
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
class MappingException extends \Doctrine\Common\DoctrineException
|
class MappingException extends \Doctrine\ORM\ORMException
|
||||||
{
|
{
|
||||||
public static function identifierRequired($entityName)
|
public static function identifierRequired($entityName)
|
||||||
{
|
{
|
||||||
|
@ -112,7 +112,8 @@ class MappingException extends \Doctrine\Common\DoctrineException
|
||||||
* @param string $entity The entity's name
|
* @param string $entity The entity's name
|
||||||
* @param \ReflectionException $previousException
|
* @param \ReflectionException $previousException
|
||||||
*/
|
*/
|
||||||
public static function reflectionFailure($entity, \ReflectionException $previousException) {
|
public static function reflectionFailure($entity, \ReflectionException $previousException)
|
||||||
return new self('An error occurred in ' . $entity, $previousException);
|
{
|
||||||
|
return new self('An error occurred in ' . $entity, 0, $previousException);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue