mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
19 lines
381 B
PHP
19 lines
381 B
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);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|