2021-06-26 23:23:15 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Exceptions;
|
2019-11-17 21:26:43 +08:00
|
|
|
|
|
|
|
use Exception;
|
2022-02-24 22:16:09 +08:00
|
|
|
use Illuminate\Http\JsonResponse;
|
2019-11-17 21:26:43 +08:00
|
|
|
|
|
|
|
class JsonDebugException extends Exception
|
|
|
|
{
|
2022-02-24 22:16:09 +08:00
|
|
|
protected array $data;
|
2019-11-17 21:26:43 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* JsonDebugException constructor.
|
|
|
|
*/
|
2022-02-24 22:16:09 +08:00
|
|
|
public function __construct(array $data)
|
2019-11-17 21:26:43 +08:00
|
|
|
{
|
|
|
|
$this->data = $data;
|
2022-02-24 22:16:09 +08:00
|
|
|
parent::__construct();
|
2019-11-17 21:26:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Covert this exception into a response.
|
|
|
|
*/
|
2022-02-24 22:16:09 +08:00
|
|
|
public function render(): JsonResponse
|
2019-11-17 21:26:43 +08:00
|
|
|
{
|
|
|
|
return response()->json($this->data);
|
|
|
|
}
|
2021-03-08 06:24:05 +08:00
|
|
|
}
|