Final Class Yiisoft\Yii\DataView\Pagination\PaginatorNotSupportedException
| Inheritance | Yiisoft\ |
|---|
Exception thrown when a pagination widget receives an unsupported paginator type.
Public Methods
| Method | Description | Defined By |
|---|---|---|
| __construct() | Creates a new instance for the given unsupported paginator. | Yiisoft\ |
Method Details
Creates a new instance for the given unsupported paginator.
| public mixed __construct ( \ | ||
| $paginator | \ |
The unsupported paginator instance. |
public function __construct(PaginatorInterface $paginator)
{
parent::__construct(
sprintf('Paginator "%s" is not supported.', $paginator::class),
);
}
User Contributed Notes
Leave a comment
Join the conversation to share a note.