* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShopBundle\Exception; use Exception; use OutOfBoundsException; class InvalidPaginationParamsException extends OutOfBoundsException { /** * @param string $message * @param int $code * @param Exception|null $previous */ public function __construct( $message = '', $code = 0, Exception $previous = null ) { if ($message == '') { $message = 'A page index should be an integer greater than 1.'; } parent::__construct($message, $code, $previous); } }