mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-04 18:29:40 +02:00
21 lines
454 B
PHP
21 lines
454 B
PHP
<?php
|
|
namespace Dropbox;
|
|
|
|
/**
|
|
* Thrown if the given 'state' parameter doesn't contain the CSRF token from the user's session.
|
|
* This is blocked to prevent CSRF attacks.
|
|
*
|
|
* The recommended action is to respond with an HTTP 403 error page.
|
|
*/
|
|
class WebAuthException_Csrf extends \Exception
|
|
{
|
|
/**
|
|
* @param string $message
|
|
*
|
|
* @internal
|
|
*/
|
|
function __construct($message)
|
|
{
|
|
parent::__construct($message);
|
|
}
|
|
}
|