mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
8ce38d2158
- Reduced the amount of different exceptions from LDAP attempt so they can be handled more consistently. - Added test to cover. - Also cleaned up LDAP tests to reduce boilterplate mocks. Fixes #2048
19 lines
401 B
PHP
19 lines
401 B
PHP
<?php namespace BookStack\Exceptions;
|
|
|
|
class NotifyException extends \Exception
|
|
{
|
|
|
|
public $message;
|
|
public $redirectLocation;
|
|
|
|
/**
|
|
* NotifyException constructor.
|
|
*/
|
|
public function __construct(string $message, string $redirectLocation = "/")
|
|
{
|
|
$this->message = $message;
|
|
$this->redirectLocation = $redirectLocation;
|
|
parent::__construct();
|
|
}
|
|
}
|