4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-21 16:37:06 +00:00
AzuraCast/src/Exception/CsrfValidationException.php
2021-07-19 00:53:45 -05:00

22 lines
441 B
PHP

<?php
declare(strict_types=1);
namespace App\Exception;
use App\Exception;
use Psr\Log\LogLevel;
use Throwable;
class CsrfValidationException extends Exception
{
public function __construct(
string $message = 'CSRF Validation Error',
int $code = 0,
Throwable $previous = null,
string $loggerLevel = LogLevel::INFO
) {
parent::__construct($message, $code, $previous, $loggerLevel);
}
}