2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Exceptions;
|
2016-02-03 15:52:25 -05:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
use Exception;
|
|
|
|
use Illuminate\Contracts\Support\Responsable;
|
|
|
|
|
|
|
|
class PrettyException extends Exception implements Responsable
|
2018-01-28 11:58:52 -05:00
|
|
|
{
|
2021-05-08 13:49:58 -04:00
|
|
|
/**
|
|
|
|
* @var ?string
|
|
|
|
*/
|
|
|
|
protected $subtitle = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var ?string
|
|
|
|
*/
|
|
|
|
protected $details = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render a response for when this exception occurs.
|
2021-06-26 11:23:15 -04:00
|
|
|
*
|
2021-10-26 17:04:18 -04:00
|
|
|
* {@inheritdoc}
|
2021-05-08 13:49:58 -04:00
|
|
|
*/
|
|
|
|
public function toResponse($request)
|
|
|
|
{
|
|
|
|
$code = ($this->getCode() === 0) ? 500 : $this->getCode();
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
return response()->view('errors.' . $code, [
|
2021-06-26 11:23:15 -04:00
|
|
|
'message' => $this->getMessage(),
|
2021-05-08 13:49:58 -04:00
|
|
|
'subtitle' => $this->subtitle,
|
2021-06-26 11:23:15 -04:00
|
|
|
'details' => $this->details,
|
2021-05-08 13:49:58 -04:00
|
|
|
], $code);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setSubtitle(string $subtitle): self
|
|
|
|
{
|
|
|
|
$this->subtitle = $subtitle;
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
public function setDetails(string $details): self
|
|
|
|
{
|
|
|
|
$this->details = $details;
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-05-08 13:49:58 -04:00
|
|
|
return $this;
|
|
|
|
}
|
2018-01-28 11:58:52 -05:00
|
|
|
}
|