Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current none :
/
var
/
www
/
html
/
tpid-handbook
/
app
/
Exceptions
/
Or
Select Your none :
Upload File :
New :
File
Dir
/var/www/html/tpid-handbook/app/Exceptions/UserTokenExpiredException.php
<?php namespace BookStack\Exceptions; class UserTokenExpiredException extends \Exception { public $userId; /** * UserTokenExpiredException constructor. * * @param string $message * @param int $userId */ public function __construct(string $message, int $userId) { $this->userId = $userId; parent::__construct($message); } }