]> BookStack Code Mirror - bookstack/blob - app/Exceptions/UserTokenExpiredException.php
Merge pull request #5626 from BookStackApp/rubentalstra-development
[bookstack] / app / Exceptions / UserTokenExpiredException.php
1 <?php
2
3 namespace BookStack\Exceptions;
4
5 class UserTokenExpiredException extends \Exception
6 {
7     public $userId;
8
9     /**
10      * UserTokenExpiredException constructor.
11      *
12      * @param string $message
13      * @param int    $userId
14      */
15     public function __construct(string $message, int $userId)
16     {
17         $this->userId = $userId;
18         parent::__construct($message);
19     }
20 }
Morty Proxy This is a proxified and sanitized view of the page, visit original site.