BadRequest.php
5 years ago
BadState.php
5 years ago
Csrf.php
5 years ago
NotApproved.php
5 years ago
Provider.php
5 years ago
BadRequest.php
21 lines
| 1 | <?php |
| 2 | namespace Dropbox; |
| 3 | |
| 4 | /** |
| 5 | * Thrown if the redirect URL was missing parameters or if the given parameters were not valid. |
| 6 | * |
| 7 | * The recommended action is to show an HTTP 400 error page. |
| 8 | */ |
| 9 | class WebAuthException_BadRequest extends \Exception |
| 10 | { |
| 11 | /** |
| 12 | * @param string $message |
| 13 | * |
| 14 | * @internal |
| 15 | */ |
| 16 | function __construct($message) |
| 17 | { |
| 18 | parent::__construct($message); |
| 19 | } |
| 20 | } |
| 21 |