Elgg  Version master
LoggedInGatekeeperException.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
13 
17  public function __construct(string $message = '', int $code = 0, \Throwable $previous = null) {
18  if (!$message) {
19  $message = elgg_echo('loggedinrequired');
20  }
21 
22  parent::__construct($message, $code, $previous);
23  }
24 }
elgg_echo(string $message_key, array $args=[], string $language= '')
Elgg language module Functions to manage language and translations.
Definition: languages.php:17
__construct(string $message= '', int $code=0,\Throwable $previous=null)
{}
Thrown when one of the gatekeepers prevents access.