| 
									
										
										
										
											2016-03-06 02:09:21 +08:00
										 |  |  | <?php namespace BookStack\Exceptions; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  | class NotFoundException extends PrettyException | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2016-03-06 02:09:21 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * NotFoundException constructor. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function __construct($message = 'Item not found') | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::__construct($message, 404); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-01-29 00:58:52 +08:00
										 |  |  | } |