mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-06 19:41:13 -05:00
* PHPStan level 6 for all PDO and Exception classes Contributes to https://github.com/FreshRSS/FreshRSS/issues/4112 * Fix type * Now also our remaining own librairies * Motivation for a few more files * A few more DAO classes * Last interface
9 lines
227 B
PHP
9 lines
227 B
PHP
<?php
|
|
class Minz_CurrentPagePaginationException extends Minz_Exception {
|
|
public function __construct(int $page) {
|
|
$message = 'Page number `' . $page . '` doesn\'t exist';
|
|
|
|
parent::__construct ($message, self::ERROR);
|
|
}
|
|
}
|