]> BookStack Code Mirror - bookstack/blob - app/Exceptions/NotifyException.php
Added social sign in
[bookstack] / app / Exceptions / NotifyException.php
1 <?php namespace Oxbow\Exceptions;
2
3
4 class NotifyException extends \Exception
5 {
6
7     public $message;
8     public $redirectLocation;
9
10     /**
11      * NotifyException constructor.
12      * @param string $message
13      * @param string    $redirectLocation
14      */
15     public function __construct($message, $redirectLocation)
16     {
17         $this->message = $message;
18         $this->redirectLocation = $redirectLocation;
19         parent::__construct();
20     }
21 }