]> BookStack Code Mirror - bookstack/blob - app/Exceptions/NotFoundException.php
WYSIWYG: Updated TinyMCE from 6.5.1 to 6.7.2
[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 }