1 <?php namespace Oxbow\Exceptions;
4 class NotifyException extends \Exception
8 public $redirectLocation;
11 * NotifyException constructor.
12 * @param string $message
13 * @param string $redirectLocation
15 public function __construct($message, $redirectLocation)
17 $this->message = $message;
18 $this->redirectLocation = $redirectLocation;
19 parent::__construct();