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