]> BookStack Code Mirror - bookstack/blob - app/Exceptions/NotFoundException.php
Apply fixes from StyleCI
[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 }