%PDF- %PDF-
Direktori : /var/www/html/management/vendor/httpoz/roles/src/Exceptions/ |
Current File : /var/www/html/management/vendor/httpoz/roles/src/Exceptions/GroupDeniedException.php |
<?php namespace HttpOz\Roles\Exceptions; use Exception; class GroupDeniedException extends Exception { /** * Create a new group denied exception instance. * * @param string $group */ public function __construct($group) { $this->message = sprintf("You are not in the required [%s] group.", $group); } }