1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php
namespace Riimu\Kit\CSRF;
/**
* Thrown when the CSRF token cannot be validated and exception is required.
* @author Riikka Kalliomäki <riikka.kalliomaki@gmail.com>
* @copyright Copyright (c) 2014, Riikka Kalliomäki
* @license http://opensource.org/licenses/mit-license.php MIT License
*/
class InvalidCSRFTokenException extends \UnexpectedValueException
{
}