| 
									
										
										
										
											2021-06-26 23:23:15 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace BookStack\Exceptions; | 
					
						
							| 
									
										
										
										
											2019-11-17 21:26:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 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); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-03-08 06:24:05 +08:00
										 |  |  | } |