1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 01:39:28 +02:00
ampache/modules/Dropbox/WebAuthException/BadState.php
Afterster 1711cd14ff Fix Soundcloud and Dropbox catalog modules since SSE
Update php-dropbox to latest version (fix SSLv3 issue)
2015-02-14 11:23:52 +01:00

19 lines
459 B
PHP

<?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.");
}
}