]> BookStack Code Mirror - bookstack/blob - app/Exceptions/NotFoundException.php
Merge branch 'master' of https://github.com/haxatron/BookStack into haxatron_upload_issue
[bookstack] / app / Exceptions / NotFoundException.php
1 <?php
2
3 namespace BookStack\Exceptions;
4
5 class NotFoundException extends PrettyException
6 {
7     /**
8      * NotFoundException constructor.
9      */
10     public function __construct($message = 'Item not found')
11     {
12         parent::__construct($message, 404);
13     }
14 }