?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/vendor/doctrine/common/lib/Doctrine/Common/Proxy/Exception/



?? Go up: /home/webdevt/prestashop17/vendor/doctrine/common/lib/Doctrine/Common/Proxy

?? Viewing: OutOfBoundsException.php

<?php
namespace Doctrine\Common\Proxy\Exception;

use OutOfBoundsException as BaseOutOfBoundsException;

/**
 * Proxy Invalid Argument Exception.
 *
 * @link   www.doctrine-project.org
 * @author Fredrik Wendel <fredrik_w@users.sourceforge.net>
 */
class OutOfBoundsException extends BaseOutOfBoundsException implements ProxyException
{
    /**
     * @param string $className
     * @param string $idField
     *
     * @return self
     */
    public static function missingPrimaryKeyValue($className, $idField)
    {
        return new self(sprintf("Missing value for primary key %s on %s", $idField, $className));
    }
}


??

??