NotFoundException.php 293 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php namespace BookStack\Exceptions; class NotFoundException extends PrettyException { /** * NotFoundException constructor. * @param string $message */ public function __construct($message = 'Item not found') { parent::__construct($message, 404); } }