1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-11-24 11:52:34 +01:00
BookStack/app/Exceptions/UserTokenExpiredException.php
2019-09-15 18:29:51 +01:00

19 lines
380 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);
}
}