mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-27 06:01:54 +03:00
Added social sign in
This commit is contained in:
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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user