. */ namespace Doctrine\ORM; /** * Exception thrown when a Proxy fails to retrieve an Entity result. * * @author robo * @since 2.0 */ class EntityNotFoundException extends ORMException { /** * Constructor. */ public function __construct($class) { parent::__construct("Entity of type '{$class}' was not found."); } }