blob: 74214d87916ebc7d5c2623c282f52ed8a3f1954d (
plain)
1
2
3
4
5
6
7
8
|
<?php
class Minz_CurrentPagePaginationException extends Minz_Exception {
public function __construct ($page) {
$message = 'Page number `' . $page . '` doesn\'t exist';
parent::__construct ($message, self::ERROR);
}
}
|