for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Icybee package.
*
* (c) Olivier Laviale <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Icybee\Modules\Users;
use ICanBoogie\HTTP\PermissionRequired;
/**
* Exception thrown when a guest or a member tries to access the admin interface.
class WebsiteAdminNotAccessible extends PermissionRequired
{
public function __construct($message = "You don't have permission to access the admin of this website.", $code = 500, \Exception $previous = null)
parent::__construct($message, $code, $previous);
}