BadRequest.php
8 years ago
BadState.php
8 years ago
Csrf.php
8 years ago
NotApproved.php
8 years ago
Provider.php
8 years ago
Provider.php
19 lines
| 1 | <?php |
| 2 | namespace Dropbox; |
| 3 | |
| 4 | /** |
| 5 | * Thrown if Dropbox returns some other error about the authorization request. |
| 6 | */ |
| 7 | class WebAuthException_Provider extends \Exception |
| 8 | { |
| 9 | /** |
| 10 | * @param string $message |
| 11 | * |
| 12 | * @internal |
| 13 | */ |
| 14 | function __construct($message) |
| 15 | { |
| 16 | parent::__construct($message); |
| 17 | } |
| 18 | } |
| 19 |