1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Start user invite system

This commit is contained in:
Dan Brown
2019-08-17 15:52:33 +01:00
parent 4de432b50d
commit 44330bdd24
11 changed files with 299 additions and 91 deletions

View File

@ -0,0 +1,19 @@
<?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);
}
}