1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20:
<?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.");
}
}