+
+ /**
+ * 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);
+ }