]>
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 #2533 from benediktvolke/fix-german-language
[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
}