0
0
Fork 0
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:
Dan Brown 2015-09-04 17:16:58 +01:00
parent 48814b8984
commit 2dcc5105ad
20 changed files with 578 additions and 32 deletions
app/Exceptions

View 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();
}
}