BookStack/app/Exceptions/NotifyException.php

36 lines
809 B
PHP
Raw Normal View History

<?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.
*/
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.
* @inheritdoc
*/
public function toResponse($request)
{
$message = $this->getMessage();
if (!empty($message)) {
session()->flash('error', $message);
}
return redirect($this->redirectLocation);
}
}