File "OutOfBoundsException.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/common/lib/Doctrine/Common/Proxy/Exception/OutOfBoundsException.php
File size: 427 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Doctrine\Common\Proxy\Exception;
if (!defined('ABSPATH')) exit;
use OutOfBoundsException as BaseOutOfBoundsException;
use function sprintf;
class OutOfBoundsException extends BaseOutOfBoundsException implements ProxyException
{
 public static function missingPrimaryKeyValue($className, $idField)
 {
 return new self(sprintf('Missing value for primary key %s on %s', $idField, $className));
 }
}