BookStack/app/Exceptions/NotifyException.php

39 lines
819 B
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace BookStack\Exceptions;
2015-09-04 16:16:58 +00:00
use Exception;
use Illuminate\Contracts\Support\Responsable;
2015-09-04 16:16:58 +00:00
class NotifyException extends Exception implements Responsable
{
2015-09-04 16:16:58 +00:00
public $message;
public $redirectLocation;
/**
* NotifyException constructor.
*/
2021-06-26 15:23:15 +00:00
public function __construct(string $message, string $redirectLocation = '/')
2015-09-04 16:16:58 +00:00
{
$this->message = $message;
$this->redirectLocation = $redirectLocation;
parent::__construct();
}
/**
* Send the response for this type of exception.
2021-06-26 15:23:15 +00:00
*
* {@inheritdoc}
*/
public function toResponse($request)
{
$message = $this->getMessage();
if (!empty($message)) {
session()->flash('error', $message);
}
return redirect($this->redirectLocation);
}
}