mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-08 18:10:08 +00:00
Added social sign in
This commit is contained in:
parent
48814b8984
commit
2dcc5105ad
20 changed files with 578 additions and 32 deletions
app/Exceptions
21
app/Exceptions/NotifyException.php
Normal file
21
app/Exceptions/NotifyException.php
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?php namespace Oxbow\Exceptions;
|
||||
|
||||
|
||||
class NotifyException extends \Exception
|
||||
{
|
||||
|
||||
public $message;
|
||||
public $redirectLocation;
|
||||
|
||||
/**
|
||||
* NotifyException constructor.
|
||||
* @param string $message
|
||||
* @param string $redirectLocation
|
||||
*/
|
||||
public function __construct($message, $redirectLocation)
|
||||
{
|
||||
$this->message = $message;
|
||||
$this->redirectLocation = $redirectLocation;
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue