Final Class Yiisoft\Data\Paginator\PageNotFoundException
| Inheritance | Yiisoft\Data\Paginator\PageNotFoundException » Yiisoft\Data\Paginator\InvalidPageException » LogicException |
|---|
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | Yiisoft\Data\Paginator\PageNotFoundException |
Method Details
| public mixed __construct ( integer $page ) | ||
| $page | integer | |
public function __construct(int $page)
{
parent::__construct(
sprintf('Page %d not found.', $page),
);
}
Signup or Login in order to comment.