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