forked from simplesamlphp/simplesamlphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBadRequest.php
More file actions
39 lines (33 loc) · 862 Bytes
/
BadRequest.php
File metadata and controls
39 lines (33 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
declare(strict_types=1);
namespace SimpleSAML\Error;
/**
* Exception which will show a 400 Bad Request error page.
*
* This exception can be thrown from within an module page handler. The user will then be
* shown a 400 Bad Request error page.
*
* @package SimpleSAMLphp
*/
class BadRequest extends Error
{
/**
* Create a new BadRequest error.
*
* @param string $reason Description of why the request was unacceptable.
*/
public function __construct(
protected string $reason,
) {
parent::__construct([ErrorCodes::BADREQUEST, '%REASON%' => $reason], null, 400);
}
/**
* Retrieve the reason why the request was invalid.
*
* @return string The reason why the request was invalid.
*/
public function getReason(): string
{
return $this->reason;
}
}