]>
BookStack Code Mirror - bookstack/blob - app/Exceptions/UnauthorizedException.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'fix-api-404' into development
[bookstack]
/
app
/
Exceptions
/
UnauthorizedException.php
1
<?php
2
3
namespace BookStack\Exceptions;
4
5
use Exception;
6
7
class UnauthorizedException extends Exception
8
{
9
/**
10
* ApiAuthException constructor.
11
*/
12
public function __construct($message, $code = 401)
13
{
14
parent::__construct($message, $code);
15
}
16
}