]>
BookStack Code Mirror - bookstack/blob - app/Exceptions/NotFoundException.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #5917 from BookStackApp/copy_references
[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
}