mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
25 lines
409 B
PHP
25 lines
409 B
PHP
|
<?php namespace BookStack\Exceptions;
|
||
|
|
||
|
use Exception;
|
||
|
|
||
|
class JsonDebugException extends Exception
|
||
|
{
|
||
|
|
||
|
protected $data;
|
||
|
|
||
|
/**
|
||
|
* JsonDebugException constructor.
|
||
|
*/
|
||
|
public function __construct($data)
|
||
|
{
|
||
|
$this->data = $data;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Covert this exception into a response.
|
||
|
*/
|
||
|
public function render()
|
||
|
{
|
||
|
return response()->json($this->data);
|
||
|
}
|
||
|
}
|