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