1 <?php namespace BookStack\Exceptions;
3 class NotifyException extends \Exception
7 public $redirectLocation;
10 * NotifyException constructor.
11 * @param string $message
12 * @param string $redirectLocation
14 public function __construct(string $message, string $redirectLocation = "/")
16 $this->message = $message;
17 $this->redirectLocation = $redirectLocation;
18 parent::__construct();