mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-29 16:09:29 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			410 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			410 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);
 | |
|     }
 | |
| }
 |