]>
BookStack Code Mirror - bookstack/blob - app/Exceptions/UnauthorizedException.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a13ba3a55d807033b7b79a19d8684396a4649d7c
[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
/**
11
* ApiAuthException constructor.
12
*/
13
public function __construct($message, $code = 401)
14
{
15
parent::__construct($message, $code);
16
}
17
}