. declare(strict_types=1); namespace core_reportbuilder; use moodle_exception; /** * User cannot access report exception * * @package core_reportbuilder * @copyright 2021 Paul Holden * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ class report_access_exception extends moodle_exception { /** * Constructor * * @param string $errorcode */ public function __construct(string $errorcode = 'errorreportview') { parent::__construct($errorcode, 'reportbuilder'); } }