mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-22 00:02:45 -04:00
* docs: language table added * Update 05_Configuration.md * Update 05_Configuration.md * french docs * Unicode quote and a few fixes (Same search&replace aslo applied to a few other files) --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
9 lines
228 B
PHP
9 lines
228 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);
|
||
}
|
||
}
|