]> BookStack Code Mirror - bookstack/blob - app/Exceptions/NotFoundException.php
Replace dots with something else on user create and edit screens
[bookstack] / app / Exceptions / NotFoundException.php
1 <?php namespace BookStack\Exceptions;
2
3 class NotFoundException extends PrettyException
4 {
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 }