for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Tools\Pagination\Exception;
use Doctrine\ORM\Exception\ORMException;
final class RowNumberOverFunctionNotEnabled extends \LogicException implements ORMException
{
public static function create()
return new self('The RowNumberOverFunction is not intended for, nor is it enabled for use in DQL.');
}