File "BadState.php"

Full Path: /var/www/bvnghean.vn/save_bvnghean.vn/wp-content/plugins/backupbuddy/destinations/dropbox2/lib/Dropbox/WebAuthException/BadState.php
File size: 459 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Dropbox;

/**
 * Thrown if all the parameters are correct, but there's no CSRF token in the session.  This
 * probably means that the session expired.
 *
 * The recommended action is to redirect the user's browser to try the approval process again.
 */
class WebAuthException_BadState extends \Exception
{
    /**
     * @internal
     */
    function __construct()
    {
        parent::__construct("Missing CSRF token in session.");
    }
}