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
NotApproved.php
19 lines
| 1 | <?php |
| 2 | namespace Dropbox; |
| 3 | |
| 4 | /** |
| 5 | * Thrown if the user chose not to grant your app access to their Dropbox account. |
| 6 | */ |
| 7 | class WebAuthException_NotApproved extends \Exception |
| 8 | { |
| 9 | /** |
| 10 | * @param string $message |
| 11 | * |
| 12 | * @internal |
| 13 | */ |
| 14 | function __construct($message) |
| 15 | { |
| 16 | parent::__construct($message); |
| 17 | } |
| 18 | } |
| 19 |